aboutsummaryrefslogtreecommitdiff
path: root/src/buffer/vertex/material_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer/vertex/material_buffer.h')
-rw-r--r--src/buffer/vertex/material_buffer.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/buffer/vertex/material_buffer.h b/src/buffer/vertex/material_buffer.h
deleted file mode 100644
index 4c61c55..0000000
--- a/src/buffer/vertex/material_buffer.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <GL/glew.h>
-
-#include <functional>
-
-class MaterialBuffer {
-private:
- const GLuint _nX;
- const GLuint _nY;
-
- GLuint _array;
- GLuint _buffer;
-
-public:
- MaterialBuffer(GLuint nX, GLuint nY, std::function<int(int,int)>&& geometry);
- ~MaterialBuffer();
-
- GLuint getBuffer() const;
-};