]> git.tdb.fi Git - libs/gl.git/blobdiff - source/builders/vertexarraybuilder.h
Rearrange soucre files into subdirectories
[libs/gl.git] / source / builders / vertexarraybuilder.h
diff --git a/source/builders/vertexarraybuilder.h b/source/builders/vertexarraybuilder.h
new file mode 100644 (file)
index 0000000..575a475
--- /dev/null
@@ -0,0 +1,29 @@
+#ifndef MSP_GL_VERTEXARRAYBUIDER_H_
+#define MSP_GL_VERTEXARRAYBUIDER_H_
+
+#include <vector>
+#include "vertexbuilder.h"
+#include "vertexformat.h"
+
+namespace Msp {
+namespace GL {
+
+class VertexArray;
+
+class VertexArrayBuilder: public VertexBuilder
+{
+private:
+       VertexArray &array;
+
+       VertexArrayBuilder(const VertexArrayBuilder &);
+public:
+       VertexArrayBuilder(VertexArray &);
+
+private:
+       virtual void vertex_(const Vector4 &);
+};
+
+} // namespace GL
+} // namespace Msp
+
+#endif