]> git.tdb.fi Git - libs/gl.git/blobdiff - tests/glsl/unary_operators.glsl
Also break up arrays which are only indexed by constants
[libs/gl.git] / tests / glsl / unary_operators.glsl
index bd9803b2bfba7f8b807de165692da5722bd35ecb..baef6451885904fb87e4c53c4e5a02d673d05f07 100644 (file)
@@ -22,7 +22,7 @@ void main()
        --i;
        i++;
        i--;
-       int arr[3];
-       ++arr[0];
+       int arr_0;
+       ++arr_0;
 }
 */