From 975e2fe70964dd088f731aea62a958356107c3cb Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 28 Jun 2002 08:47:23 +0000 Subject: [PATCH] Removed commas from the end of enum lists. --- include/osg/Geometry | 2 +- include/osg/Primitive | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/osg/Geometry b/include/osg/Geometry index 9586835ad..003a6c5c4 100644 --- a/include/osg/Geometry +++ b/include/osg/Geometry @@ -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(); } diff --git a/include/osg/Primitive b/include/osg/Primitive index 082f1ecd0..64a2c1ea5 100644 --- a/include/osg/Primitive +++ b/include/osg/Primitive @@ -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