mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-27 18:48:36 +02:00
29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* RT.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: TheRed <TheRed@students.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/09/27 14:51:49 by TheRed #+# #+# */
|
|
/* Updated: 2024/09/27 14:51:49 by TheRed ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "RT.hpp"
|
|
|
|
int main(void)
|
|
{
|
|
Window window;
|
|
GLFWwindow *win = window.getWindow();
|
|
|
|
while (!window.shouldClose())
|
|
{
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
window.display();
|
|
window.pollEvents();
|
|
}
|
|
|
|
return (0);
|
|
} |