This commit is contained in:
2025-03-21 21:35:40 -05:00
parent 8c082665f4
commit 523ae5a22d
3 changed files with 6 additions and 4 deletions

View File

@@ -1,5 +1,7 @@
#include "RendererOpenGL.h"
#include "pch.hpp"
#define GLEW_STATIC
#include <GL/glew.h>
@@ -11,7 +13,7 @@ namespace Archimedes {
void RendererOpenGL::render(std::list<renderCmd*> cmdList, int& w, int& h) {
glViewport(0, 0, &w, &h);
glViewport(0, 0, w, h);
glClear(GL_COLOR_BUFFER_BIT);

View File

@@ -1,4 +1,5 @@
#include "pch.hpp"
#include "WindowGLFW.h"
namespace Archimedes {