From: Brian Paul Date: Sat, 24 Oct 2009 17:34:27 +0000 (-0600) Subject: mesa: move assertion after declaration X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c3787f5130f79c3adbb9e8e1ace8935c919876f;p=mesa.git mesa: move assertion after declaration --- diff --git a/src/mesa/main/depthstencil.c b/src/mesa/main/depthstencil.c index 6fefdac1e31..193c7f8255f 100644 --- a/src/mesa/main/depthstencil.c +++ b/src/mesa/main/depthstencil.c @@ -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);