mesa: Simplify a bit of _mesa_add_state_reference using memcmp.
authorEric Anholt <eric@anholt.net>
Fri, 8 Oct 2010 05:24:38 +0000 (22:24 -0700)
committerEric Anholt <eric@anholt.net>
Fri, 8 Oct 2010 17:24:29 +0000 (10:24 -0700)
src/mesa/program/prog_parameter.c

index 6bf8a081b0299202c43281cef385d5f0f2b26548..3570cab118b22cb8d2192cc21f81155292e173e9 100644 (file)
@@ -378,18 +378,9 @@ _mesa_add_state_reference(struct gl_program_parameter_list *paramList,
 
    /* Check if the state reference is already in the list */
    for (index = 0; index < (GLint) paramList->NumParameters; index++) {
-      GLuint i, match = 0;
-      for (i = 0; i < STATE_LENGTH; i++) {
-         if (paramList->Parameters[index].StateIndexes[i] == stateTokens[i]) {
-            match++;
-         }
-         else {
-            break;
-         }
-      }
-      if (match == STATE_LENGTH) {
-         /* this state reference is already in the parameter list */
-         return index;
+      if (!memcmp(paramList->Parameters[index].StateIndexes,
+                 stateTokens, STATE_LENGTH * sizeof(gl_state_index))) {
+        return index;
       }
    }