]> git.tdb.fi Git - libs/gl.git/blobdiff - source/meshbuilder.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / meshbuilder.cpp
diff --git a/source/meshbuilder.cpp b/source/meshbuilder.cpp
deleted file mode 100644 (file)
index cd3be66..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#include "mesh.h"
-#include "meshbuilder.h"
-
-namespace Msp {
-namespace GL {
-
-MeshBuilder::MeshBuilder(Mesh &m):
-       PrimitiveBuilder(m.vertices),
-       mesh(m),
-       first(0)
-{ }
-
-void MeshBuilder::begin_()
-{
-       first=array.size();
-}
-
-void MeshBuilder::end_()
-{
-       Batch batch(type);
-       unsigned last=array.size();
-       for(unsigned i=first; i<last; ++i)
-               batch.append(i);
-       mesh.add_batch(batch);
-}
-
-} // namespace GL
-} // namespace Msp