radeon: move declarations before code
authorBrian Paul <brianp@vmware.com>
Mon, 2 Jan 2012 18:55:40 +0000 (11:55 -0700)
committerBrian Paul <brianp@vmware.com>
Mon, 2 Jan 2012 18:55:40 +0000 (11:55 -0700)
src/mesa/drivers/dri/radeon/radeon_debug.c
src/mesa/drivers/dri/radeon/radeon_tcl.c

index 413000b6c068e63dbdf050665e2530ff3e24f231..dd0afb809a09e510955b67e082cf28af4290e372 100644 (file)
@@ -93,6 +93,8 @@ void _radeon_print(const radeon_debug_type_t type,
           const char* message,
           ...)
 {
+       va_list values;
+
        GET_CURRENT_CONTEXT(ctx);
        if (ctx) {
                radeonContextPtr radeon = RADEON_CONTEXT(ctx);
@@ -100,7 +102,6 @@ void _radeon_print(const radeon_debug_type_t type,
                if (radeon->debug.indent_depth)
                        fprintf(stderr, "%s", radeon->debug.indent);
        }
-       va_list values;
        va_start( values, message );
        vfprintf(stderr, message, values);
        va_end( values );
index 874ba926dc4c9355d516586356f4f904d1bf5ce4..06cb8075da19049d1f826b65a9ad68ea81d6327c 100644 (file)
@@ -401,8 +401,6 @@ static GLuint radeonEnsureEmitSize( struct gl_context * ctx , GLuint inputs )
     /* predict size for elements */
     for (i = 0; i < VB->PrimitiveCount; ++i)
     {
-      if (!VB->Primitive[i].count)
-       continue;
       /* If primitive.count is less than MAX_CONVERSION_SIZE
         rendering code may decide convert to elts.
         In that case we have to make pessimistic prediction.
@@ -410,6 +408,8 @@ static GLuint radeonEnsureEmitSize( struct gl_context * ctx , GLuint inputs )
       const GLuint elts = ELTS_BUFSZ(nr_aos);
       const GLuint index = INDEX_BUFSZ;
       const GLuint vbuf = VBUF_BUFSZ;
+      if (!VB->Primitive[i].count)
+       continue;
       if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE)
          || vbuf > index + elts)
        space_required += vbuf;
@@ -442,6 +442,7 @@ static GLboolean radeon_run_tcl_render( struct gl_context *ctx,
    struct vertex_buffer *VB = &tnl->vb;
    GLuint inputs = VERT_BIT_POS | VERT_BIT_COLOR0;
    GLuint i;
+   GLuint emit_end;
 
    /* TODO: separate this from the swtnl pipeline 
     */
@@ -477,7 +478,7 @@ static GLboolean radeon_run_tcl_render( struct gl_context *ctx,
    }
 
    radeonReleaseArrays( ctx, ~0 );
-   GLuint emit_end = radeonEnsureEmitSize( ctx, inputs )
+   emit_end = radeonEnsureEmitSize( ctx, inputs )
      + rmesa->radeon.cmdbuf.cs->cdw;
    radeonEmitArrays( ctx, inputs );