]> git.tdb.fi Git - libs/gl.git/blobdiff - source/primitivebuilder.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / primitivebuilder.cpp
diff --git a/source/primitivebuilder.cpp b/source/primitivebuilder.cpp
deleted file mode 100644 (file)
index e032a44..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#include "primitivebuilder.h"
-
-namespace Msp {
-namespace GL {
-
-PrimitiveBuilder::PrimitiveBuilder(VertexArray &a):
-       array(a),
-       vab(array),
-       in_batch(false)
-{ }
-
-void PrimitiveBuilder::begin(PrimitiveType t)
-{
-       if(in_batch)
-               throw InvalidState("begin() already called");
-
-       type = t;
-       in_batch = true;
-
-       begin_();
-}
-
-void PrimitiveBuilder::end()
-{
-       if(!in_batch)
-               throw InvalidState("end() called without begin()");
-
-       in_batch = false;
-
-       end_();
-}
-
-void PrimitiveBuilder::element(unsigned i)
-{
-       if(!in_batch)
-               throw InvalidState("Element specification not between begin() and end()");
-       if(i>=array.size())
-               throw InvalidParameterValue("Element index out of range");
-       element_(i);
-}
-
-PrimitiveType PrimitiveBuilder::get_type() const
-{
-       if(!in_batch)
-               throw InvalidState("Not between begin() and end()");
-       return type;
-}
-
-void PrimitiveBuilder::vertex_(float x, float y, float z, float w)
-{
-       vab.texcoord(ts, tt, tr, tq);
-       vab.color(cr, cg, cb, ca);
-       vab.normal(nx, ny, nz);
-       for(std::map<unsigned, Attrib>::iterator i=av.begin(); i!=av.end(); ++i)
-               vab.attrib(i->first, i->second.x, i->second.y, i->second.z, i->second.w);
-       vab.vertex(x, y, z, w);
-
-       if(in_batch)
-               element_(array.size()-1);
-}
-
-} // namespace GL
-} // namespace Msp