aboutsummaryrefslogtreecommitdiff
path: root/src/buffer/vertex/lattice_cell_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer/vertex/lattice_cell_buffer.h')
-rw-r--r--src/buffer/vertex/lattice_cell_buffer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buffer/vertex/lattice_cell_buffer.h b/src/buffer/vertex/lattice_cell_buffer.h
index e5e00a4..cabff67 100644
--- a/src/buffer/vertex/lattice_cell_buffer.h
+++ b/src/buffer/vertex/lattice_cell_buffer.h
@@ -4,6 +4,8 @@
class LatticeCellBuffer {
private:
+ GLuint _nX;
+ GLuint _nY;
GLuint _array;
GLuint _buffer;
@@ -11,5 +13,7 @@ public:
LatticeCellBuffer(GLuint nX, GLuint nY);
~LatticeCellBuffer();
+ void init();
+
GLuint getBuffer() const;
};