+ | First sphere

This commit is contained in:
TheRedShip
2024-10-14 23:16:28 +02:00
parent 163828707a
commit 9d7a30800e
10 changed files with 239 additions and 110 deletions

View File

@ -27,7 +27,7 @@ class Shader
// void compile(const char *vertexSource, const char *fragmentSource);
void attach(void);
void setupVertexBuffer(const RT::Vec2f* vertices, size_t size);
void drawTriangles(void);
void drawTriangles(size_t size);

View File

@ -18,7 +18,7 @@
class Window
{
public:
Window(void);
Window(int width, int height, const char *title, int sleep);
Window(Window const &src);
~Window(void);