t_dd_dmatmp: Indentation and formatting fixes after HAVE_QUADS change
authorIan Romanick <ian.d.romanick@intel.com>
Mon, 14 Sep 2015 19:41:33 +0000 (12:41 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Wed, 23 Sep 2015 16:56:53 +0000 (09:56 -0700)
No piglit regressions on i915 (G33) or radeon (Radeon 7500).

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/mesa/tnl_dd/t_dd_dmatmp.h

index 33a0256496c9668b94aee0fc3e78f399a565dd07..dadbf21d54a0a39d55452cf2498104f85f30f633 100644 (file)
@@ -517,10 +517,10 @@ static void TAG(render_quad_strip_verts)( struct gl_context *ctx,
 }
 
 
-static void TAG(render_quads_verts)( struct gl_context *ctx,
-                                    GLuint start,
-                                    GLuint count,
-                                    GLuint flags )
+static void TAG(render_quads_verts)(struct gl_context *ctx,
+                                    GLuint start,
+                                    GLuint count,
+                                    GLuint flags)
 {
    /* Emit whole number of quads in total. */
    count -= count & 3;
@@ -1022,58 +1022,53 @@ static void TAG(render_quad_strip_elts)( struct gl_context *ctx,
 }
 
 
-static void TAG(render_quads_elts)( struct gl_context *ctx,
-                                   GLuint start,
-                                   GLuint count,
-                                   GLuint flags )
+static void TAG(render_quads_elts)(struct gl_context *ctx,
+                                   GLuint start,
+                                   GLuint count,
+                                   GLuint flags)
 {
-   /* Emit whole number of quads in total. */
-   count -= count & 3;
-
-   {
-      LOCAL_VARS;
-      GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts;
-      int dmasz = GET_SUBSEQUENT_VB_MAX_ELTS();
-      int currentsz;
-      GLuint j, nr;
-
-      ELT_INIT( GL_TRIANGLES );
-      currentsz = GET_CURRENT_VB_MAX_ELTS();
+   LOCAL_VARS;
+   GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts;
+   int dmasz = GET_SUBSEQUENT_VB_MAX_ELTS();
+   int currentsz;
+   GLuint j, nr;
 
-      /* Emit whole number of quads in total, and in each buffer.
-       */
-      dmasz -= dmasz & 3;
-      currentsz -= currentsz & 3;
+   ELT_INIT(GL_TRIANGLES);
+   currentsz = GET_CURRENT_VB_MAX_ELTS();
 
-      /* Adjust for rendering as triangles:
-       */
-      currentsz = currentsz/6*4;
-      dmasz = dmasz/6*4;
+   /* Emit whole number of quads in total, and in each buffer.
+    */
+   count -= count & 3;
+   dmasz -= dmasz & 3;
+   currentsz -= currentsz & 3;
 
-      if (currentsz < 8)
-        currentsz = dmasz;
+   /* Adjust for rendering as triangles:
+    */
+   currentsz = currentsz / 6 * 4;
+   dmasz = dmasz / 6 * 4;
 
-      for (j = 0; j + 3 < count; j += nr - 2) {
-        nr = MIN2( currentsz, count - j );
+   if (currentsz < 8)
+      currentsz = dmasz;
 
-        if (nr >= 4)
-        {
-           GLint quads = nr/4;
-           GLint i;
-           ELTS_VARS( ALLOC_ELTS( quads * 6 ) );
+   for (j = 0; j + 3 < count; j += nr - 2) {
+      nr = MIN2(currentsz, count - j);
 
-           for (i = j; i < j + quads; i++, elts += 4) {
-              EMIT_TWO_ELTS( 0, elts[0], elts[1] );
-              EMIT_TWO_ELTS( 2, elts[3], elts[1] );
-              EMIT_TWO_ELTS( 4, elts[2], elts[3] );
-              INCR_ELTS( 6 );
-           }
+      if (nr >= 4) {
+         GLint quads = nr / 4;
+         GLint i;
+         ELTS_VARS(ALLOC_ELTS(quads * 6));
 
-           FLUSH();
-        }
+         for (i = j; i < j + quads; i++, elts += 4) {
+            EMIT_TWO_ELTS(0, elts[0], elts[1]);
+            EMIT_TWO_ELTS(2, elts[3], elts[1]);
+            EMIT_TWO_ELTS(4, elts[2], elts[3]);
+            INCR_ELTS(6);
+         }
 
-        currentsz = dmasz;
+         FLUSH();
       }
+
+      currentsz = dmasz;
    }
 }