]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexarraybuilder.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / vertexarraybuilder.h
diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h
deleted file mode 100644 (file)
index 04cd5a2..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007-2008, 2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#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