the gui problem^TM

This commit is contained in:
2025-03-21 16:16:25 -05:00
parent 7900def444
commit 6b8861a7fb
15 changed files with 316 additions and 206 deletions

View File

@@ -1,9 +1,16 @@
#ifndef RENDERER
#define RENDERER
#include "Archimedes.h"
#define RENDERER_OPENGL
#include "RendererOpenGL/RendererOpenGL.h"
namespace Archimedes {
class Renderer {
public:
int w, h;
typedef void renderCmd();
~Renderer() {}
@@ -14,6 +21,8 @@ namespace Archimedes {
private:
std::list<renderCmd*> rc;
RendererImpl r;
};
}
#endif