ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / mesa_shader_integer_functions / compiler / overloads-04.vert
blobe0bad8bab2cf2a706c4dc1685e023e32e7cd7267
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.30
4 // require_extensions: GL_MESA_shader_integer_functions
5 // [end config]
7 // If a function name is declared twice with the same parameter types,
8 // then the return types _and all qualifiers_ must match.
10 #version 130
11 #extension GL_MESA_shader_integer_functions : enable
13 void foo(int x) {}
14 void foo(precise int x) {}      /* `precise` is mismatched. */