Remove unsupported primitives

This commit is contained in:
Thomas Edvalson
2016-01-01 03:21:13 -05:00
parent b980934d85
commit 1df8dabc96
2 changed files with 1 additions and 12 deletions
@@ -38,13 +38,9 @@ namespace cpp3ds
////////////////////////////////////////////////////////////
enum PrimitiveType
{
Points, ///< List of individual points
Lines, ///< List of individual lines
LinesStrip, ///< List of connected lines, a point uses the previous point to form a line
Triangles, ///< List of individual triangles
TrianglesStrip, ///< List of connected triangles, a point uses the two previous points to form a triangle
TrianglesFan, ///< List of connected triangles, a point uses the common center and the previous point to form a triangle
Quads ///< List of individual quads (deprecated, don't work with OpenGL ES)
};
}