ARB_ubo/referenced-by-shader: pass if shader compiler moves UBOs between shaders
[piglit.git] / tests / spec / arb_compute_shader / compiler / no_user_defined_out.comp
blob5b01be0b3721a3db6fa94bfa95b88505e153b016
1 // [config]
2 // expect_result: fail
3 // glsl_version: 3.30
4 // require_extensions: GL_ARB_compute_shader
5 // [end config]
6 //
7 // From the ARB_compute_shader spec:
8 //
9 //     Compute shaders have no built-in output variables, do not
10 //     support user-defined output variables and do not form a formal
11 //     interface with any other shader stage.
13 #version 330
14 #extension GL_ARB_compute_shader: enable
16 layout(local_size_x = 1) in;
18 out int i;
20 void main()