]> 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 025bced..0000000
+++ /dev/null
@@ -1,38 +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),
-       batch(0)
-{ }
-
-void MeshBuilder::begin_()
-{
-       batch=new Batch(type);
-}
-
-void MeshBuilder::end_()
-{
-       mesh.add_batch(*batch);
-       delete batch;
-       batch=0;
-}
-
-void MeshBuilder::element_(unsigned i)
-{
-       batch->append(i);
-}
-
-} // namespace GL
-} // namespace Msp