]> git.tdb.fi Git - libs/gl.git/blobdiff - source/geometrybuilder.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / geometrybuilder.h
diff --git a/source/geometrybuilder.h b/source/geometrybuilder.h
deleted file mode 100644 (file)
index e1c877d..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2011  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_GEOMETRYBUILDER_H_
-#define MSP_GL_GEOMETRYBUILDER_H_
-
-namespace Msp {
-namespace GL {
-
-class Mesh;
-class PrimitiveBuilder;
-
-class GeometryBuilder
-{
-public:
-       enum TextureFit
-       {
-               STRETCH,
-               CROP,
-               WRAP
-       };
-
-protected:
-       int tangent_attr;
-       int binormal_attr;
-       TextureFit tex_fit;
-
-       GeometryBuilder();
-
-public:
-       GeometryBuilder &tangent(unsigned);
-       GeometryBuilder &binormal(unsigned);
-       GeometryBuilder &texture_fit(TextureFit);
-protected:
-       void adjust_texture_scale(float &, float &, float, float) const;
-
-public:
-       virtual void build(PrimitiveBuilder &) const = 0;
-       void build(Mesh &) const;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif