ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_shader_subroutine / compiler / call-param-mismatch.vert
blob870d0cae4a66f8166b6c94b375d708cfc605aa06
1 // [config]
2 // expect_result: fail
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 subroutine (func_type) void impl() {}
14 subroutine uniform func_type f;
16 /* Call f() with a mismatched parameter list */
17 void foo() {
18         f(42);