summaryrefslogtreecommitdiff
path: root/lib/glVertexArrays.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/glVertexArrays.cpp')
-rw-r--r--lib/glVertexArrays.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/glVertexArrays.cpp b/lib/glVertexArrays.cpp
deleted file mode 100644
index 372b49b..0000000
--- a/lib/glVertexArrays.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "glVertexArrays.h"
-
-void
-glVertexArraysBase::gen(GLsizei n, GLuint * ids)
-{
- glGenVertexArrays(n, ids);
-}
-
-void
-glVertexArraysBase::del(GLsizei n, const GLuint * ids)
-{
- glDeleteVertexArrays(n, ids);
-}