ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_shader_subroutine / compiler / array-call-const-indexed.vert
blob929f571e984785670c6d668d1c7c2cc27fb2caca
1 // [config]
2 // expect_result: pass
3 // glsl_version: 1.50
4 // require_extensions: GL_ARB_shader_subroutine
5 // [end config]
7 #version 150
8 #extension GL_ARB_shader_subroutine: require
10 subroutine void func_type();
12 /* A subroutine matching the above type */
13 subroutine (func_type) void impl() {}
15 /* An array of subroutine uniforms matching the above */
16 subroutine uniform func_type f[4];
18 /* Elements of an array of subroutine uniforms are callable
19  * as if they were any other function
20  */
21 void foo() {
22         f[0]();