summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-06-24 10:18:08 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-06-24 11:00:01 +0900
commitc47248bdf8d55f985b199fc6e15b0177305cb6fd (patch)
tree1148f6dabea2ca944d29e4c08b042224912f6644 /src/mesa/main
parent543bba6ee3a1b3a947d1dfaca75e820ef7b98843 (diff)
downloadexternal_mesa3d-c47248bdf8d55f985b199fc6e15b0177305cb6fd.zip
external_mesa3d-c47248bdf8d55f985b199fc6e15b0177305cb6fd.tar.gz
external_mesa3d-c47248bdf8d55f985b199fc6e15b0177305cb6fd.tar.bz2
mesa: Move variable declarations to the scope top.
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/texstore.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c
index 519a73b..113eef6 100644
--- a/src/mesa/main/texstore.c
+++ b/src/mesa/main/texstore.c
@@ -2405,16 +2405,15 @@ GLboolean
_mesa_texstore_s8_z24(TEXSTORE_PARAMS)
{
const GLuint depthScale = 0xffffff;
-
- ASSERT(dstFormat == &_mesa_texformat_s8_z24);
- ASSERT(srcFormat == GL_DEPTH_STENCIL_EXT || srcFormat == GL_DEPTH_COMPONENT);
- ASSERT(srcFormat != GL_DEPTH_STENCIL_EXT || srcType == GL_UNSIGNED_INT_24_8_EXT);
-
const GLint srcRowStride
= _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType)
/ sizeof(GLuint);
GLint img, row;
+ ASSERT(dstFormat == &_mesa_texformat_s8_z24);
+ ASSERT(srcFormat == GL_DEPTH_STENCIL_EXT || srcFormat == GL_DEPTH_COMPONENT);
+ ASSERT(srcFormat != GL_DEPTH_STENCIL_EXT || srcType == GL_UNSIGNED_INT_24_8_EXT);
+
/* Incase we only upload depth we need to preserve the stencil */
if (srcFormat == GL_DEPTH_COMPONENT) {
for (img = 0; img < srcDepth; img++) {