X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=tests%2Fglsl%2Funary_operators.glsl;h=9b45a05fa943aa5a3c6e296a83fabcddee15d74a;hb=01113149a4f70b590e6817aa4ba04062f7db4771;hp=a04d24f703e624fc92e7ced2c5c064388e239b4d;hpb=50ab5ca2babc8d9592903da6072a13b381ed6656;p=libs%2Fgl.git diff --git a/tests/glsl/unary_operators.glsl b/tests/glsl/unary_operators.glsl index a04d24f7..9b45a05f 100644 --- a/tests/glsl/unary_operators.glsl +++ b/tests/glsl/unary_operators.glsl @@ -13,16 +13,18 @@ void main() ++arr[0]; } +// Target API: Vulkan + /* Expected output: vertex void main() { - int i = 0; - i = -~i; + int i; + i = 1; ++i; --i; i++; i--; - int arr[3]; - ++arr[0]; + int arr_0; + ++arr_0; } */