diff options
author | uis <uis9936@gmail.com> | 2019-01-26 19:49:56 +0100 |
---|---|---|
committer | uis <uis9936@gmail.com> | 2019-01-26 19:49:56 +0100 |
commit | d014a90059202305a2ec4a4f268d94fe80484c37 (patch) | |
tree | 30336cabbff2b14849dde68e9eb94ad30431cc60 /src/Framebuffer.hpp | |
parent | Updated .gitignore (diff) | |
download | AltCraft-d014a90059202305a2ec4a4f268d94fe80484c37.tar AltCraft-d014a90059202305a2ec4a4f268d94fe80484c37.tar.gz AltCraft-d014a90059202305a2ec4a4f268d94fe80484c37.tar.bz2 AltCraft-d014a90059202305a2ec4a4f268d94fe80484c37.tar.lz AltCraft-d014a90059202305a2ec4a4f268d94fe80484c37.tar.xz AltCraft-d014a90059202305a2ec4a4f268d94fe80484c37.tar.zst AltCraft-d014a90059202305a2ec4a4f268d94fe80484c37.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Framebuffer.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Framebuffer.hpp b/src/Framebuffer.hpp index 6e0d33e..f5c102d 100644 --- a/src/Framebuffer.hpp +++ b/src/Framebuffer.hpp @@ -1,6 +1,6 @@ #pragma once -#include <gl/glew.h> +#include <GL/glew.h> class Framebuffer { unsigned int width, height; @@ -26,4 +26,4 @@ public: static Framebuffer &GetDefault(); void Clear(bool color = true, bool depth = true, bool stencil = true); -};
\ No newline at end of file +}; |