diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-12-22 14:10:34 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-12-22 14:10:34 +0000 |
commit | 20646758939562c0fbad4d52774efcfacf7e22fc (patch) | |
tree | 9bd582b749640206a5e38389117d6c931dcf1f5f /ui/iconButton.h | |
parent | Initial commit with some basic UI (diff) | |
download | ilt-20646758939562c0fbad4d52774efcfacf7e22fc.tar.bz2 ilt-20646758939562c0fbad4d52774efcfacf7e22fc.tar.xz ilt-20646758939562c0fbad4d52774efcfacf7e22fc.zip |
RAII for glVertex and glBuffer
Diffstat (limited to 'ui/iconButton.h')
-rw-r--r-- | ui/iconButton.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/iconButton.h b/ui/iconButton.h index ec3f357..76e3f1b 100644 --- a/ui/iconButton.h +++ b/ui/iconButton.h @@ -3,7 +3,8 @@ #include "icon.h" #include "uiComponent.h" -#include <GL/glew.h> +#include <glBuffers.h> +#include <glVertexArrays.h> #include <glm/glm.hpp> #include <string> @@ -21,7 +22,8 @@ public: Icon icon; UIEvent click; - GLuint m_vertexArrayObject, m_vertexArrayBuffer; + glVertexArray m_vertexArrayObject; + glBuffer m_vertexArrayBuffer; }; #endif |