heavy refactoring

This commit is contained in:
2025-04-02 11:50:32 -05:00
parent c3685d2b30
commit 44ef73395c
18 changed files with 132 additions and 93 deletions

View File

@@ -17,7 +17,9 @@ namespace Archimedes {
RendererOpenGL() {};
~RendererOpenGL() {};
void init() { glewInit(); };
bool init() {
return glewInit() == GLEW_OK;
};
void render(std::list<renderCmd*> cmdList, int& w, int& h) {