]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexbuilder.cpp
Move VertexFormat and VertexArrayBuilder to their own files
[libs/gl.git] / source / vertexbuilder.cpp
diff --git a/source/vertexbuilder.cpp b/source/vertexbuilder.cpp
new file mode 100644 (file)
index 0000000..0b1d3f3
--- /dev/null
@@ -0,0 +1,20 @@
+/* $Id$
+
+This file is part of libmspgl
+Copyright © 2007  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#include "vertexbuilder.h"
+
+namespace Msp {
+namespace GL {
+
+VertexBuilder::VertexBuilder():
+       cr(1), cg(1), cb(1), ca(1),
+       ts(0), tt(0), tr(0), tq(0),
+       nx(0), ny(0), nz(1)
+{ }
+
+} // namespace GL
+} // namespace Msp