mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-27 18:48:36 +02:00
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* RT.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: ycontre <ycontre@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/09/27 14:52:10 by TheRed #+# #+# */
|
|
/* Updated: 2024/10/13 20:52:17 by ycontre ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef RT__HPP
|
|
# define RT__HPP
|
|
|
|
# define WIDTH 1920
|
|
# define HEIGHT 1080
|
|
|
|
# include "glm/glm.hpp"
|
|
# include "glm/gtc/matrix_transform.hpp"
|
|
# include "glm/gtc/type_ptr.hpp"
|
|
|
|
# include "glad/gl.h"
|
|
# include "GLFW/glfw3.h"
|
|
|
|
# include <iostream>
|
|
|
|
# include "Camera.hpp"
|
|
# include "Window.hpp"
|
|
# include "Shader.hpp"
|
|
|
|
#endif |