Browse Source

Merge pull request #1479 from seanpaultaylor/next

Fixed #1478. Missing GL_CW and GL_CCW enum values.
Sean Taylor 11 years ago
parent
commit
cceb0c5c30
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gameplay/src/RenderState.h

+ 2 - 2
gameplay/src/RenderState.h

@@ -221,8 +221,8 @@ public:
      */
      */
     enum FrontFace
     enum FrontFace
     {
     {
-        FRONT_FACE_CW,
-        FRONT_FACE_CCW
+        FRONT_FACE_CW = GL_CW,
+        FRONT_FACE_CC = GL_CCW
     };
     };
 
 
 	/**
 	/**