X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=tests%2Fglsl%2Funary_operators.glsl;h=baef6451885904fb87e4c53c4e5a02d673d05f07;hb=ef891fe4bf86704c37b4269d1aca190405455c12;hp=a04d24f703e624fc92e7ced2c5c064388e239b4d;hpb=50ab5ca2babc8d9592903da6072a13b381ed6656;p=libs%2Fgl.git diff --git a/tests/glsl/unary_operators.glsl b/tests/glsl/unary_operators.glsl index a04d24f7..baef6451 100644 --- a/tests/glsl/unary_operators.glsl +++ b/tests/glsl/unary_operators.glsl @@ -16,13 +16,13 @@ void main() /* 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; } */