mesa: Work around internal compiler error
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>
This commit is contained in:
committed by
Brian Paul
parent
067ad6e53e
commit
8fcddd325c
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user