mesa: move assertion after declaration
authorBrian Paul <brianp@vmware.com>
Sat, 24 Oct 2009 17:34:27 +0000 (11:34 -0600)
committerBrian Paul <brianp@vmware.com>
Sat, 24 Oct 2009 17:34:27 +0000 (11:34 -0600)
src/mesa/main/depthstencil.c

index 6fefdac..193c7f8 100644 (file)
@@ -329,8 +329,8 @@ put_mono_values_z24(GLcontext *ctx, struct gl_renderbuffer *z24rb,
       }
    }
    else {
-      assert(dsrb->Format == MESA_FORMAT_S8_Z24);
       const GLuint shiftedVal = *((GLuint *) value);
+      assert(dsrb->Format == MESA_FORMAT_S8_Z24);
       for (i = 0; i < count; i++) {
          if (!mask || mask[i]) {
             temp[i] = shiftedVal | (temp[i] & 0xff000000);