ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_shader_subroutine / compiler / layout-qualifier-index-invalid.vert
blobdd8ce7a86ccccd15fa693860cacb8f0f95ba902c
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // require_extensions: GL_ARB_shader_subroutine
5 // [end config]
6 //
7 // ARB_explicit_uniform_location spec allows a layout qualifier for
8 // subroutines, test for compile error when this is not available.
10 #version 150
11 #extension GL_ARB_shader_subroutine: require
13 subroutine void func_type();
15 /* A subroutine matching the above type */
16 layout(index = 2) subroutine (func_type) void f() {}