mesa: Work around internal compiler error
authorThomas Sondergaard <ts@medical-insight.com>
Tue, 7 Jan 2014 20:31:00 +0000 (13:31 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 9 Jan 2014 00:33:06 +0000 (17:33 -0700)
This small rearrangement avoids MSVC 2013 ICE. Also, this should be
a better memory access order.

Cc: "10.0" <mesa-stable@lists.freedesktop.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/gallium/drivers/softpipe/sp_quad_blend.c

index 48d1a2e6740af1c577eb44105b5756f6276596f4..d122586559d6cbdb668623815ac49edeb8a7cb28 100644 (file)
@@ -860,8 +860,8 @@ clamp_colors(float (*quadColor)[4])
 {
    unsigned i, j;
 
-   for (j = 0; j < TGSI_QUAD_SIZE; j++) {
-      for (i = 0; i < 4; i++) {
+   for (i = 0; i < 4; i++) {
+      for (j = 0; j < TGSI_QUAD_SIZE; j++) {
          quadColor[i][j] = CLAMP(quadColor[i][j], 0.0F, 1.0F);
       }
    }