]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexarraybuilder.h
Optimize the Blender exporter to process face islands when creating strips
[libs/gl.git] / source / vertexarraybuilder.h
index 0065c536b8aa52b297d9111d821e26d77fe74d63..b6af0b9534476f495379218c31a07aae37f5eefe 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
+Copyright © 2007-2008, 2010  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -19,15 +19,16 @@ class VertexArray;
 
 class VertexArrayBuilder: public VertexBuilder
 {
+private:
+       VertexArray  &array;
+
+       VertexArrayBuilder(const VertexArrayBuilder &);
 public:
        VertexArrayBuilder(VertexArray &);
        ~VertexArrayBuilder();
 
 private:
-       VertexArray  &array;
-
-       VertexArrayBuilder(const VertexArrayBuilder &);
-       virtual void vertex_(float, float, float, float);
+       virtual void vertex_(const Vector4 &);
 };
 
 } // namespace GL