]> git.tdb.fi Git - libs/gl.git/blobdiff - tests/glsl/unary_operators.glsl
Fix GLSL test cases so they pass the basic tests
[libs/gl.git] / tests / glsl / unary_operators.glsl
index bd9803b2bfba7f8b807de165692da5722bd35ecb..9b45a05fa943aa5a3c6e296a83fabcddee15d74a 100644 (file)
@@ -13,6 +13,8 @@ void main()
        ++arr[0];
 }
 
+// Target API: Vulkan
+
 /* Expected output: vertex
 void main()
 {
@@ -22,7 +24,7 @@ void main()
        --i;
        i++;
        i--;
-       int arr[3];
-       ++arr[0];
+       int arr_0;
+       ++arr_0;
 }
 */