Removed commas from the end of enum lists.

This commit is contained in:
Robert Osfield
2002-06-28 08:47:23 +00:00
parent 26497c7581
commit 975e2fe709
2 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ class SG_EXPORT Geometry : public Drawable
BIND_OFF=0,
BIND_OVERALL,
BIND_PER_PRIMITIVE,
BIND_PER_VERTEX,
BIND_PER_VERTEX
};
void setVertexArray(Vec3Array* array) { _vertexArray = array; dirtyDisplayList(); }

View File

@@ -16,11 +16,11 @@ class Primitive : public Object
enum Type
{
PrimitiveType = 0,
DrawArraysPrimitiveType = 1,
UByteDrawElementsPrimitiveType = 2,
UShortDrawElementsPrimitiveType = 3,
UIntDrawElementsPrimitiveType = 4,
PrimitiveType,
DrawArraysPrimitiveType,
UByteDrawElementsPrimitiveType,
UShortDrawElementsPrimitiveType,
UIntDrawElementsPrimitiveType
};
enum Mode