Removed commas from the end of enum lists.
This commit is contained in:
@@ -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(); }
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user