]> git.tdb.fi Git - libs/gl.git/blob - tests/glsl/function_inline_reorder.glsl
Add a unit test framework and some tests for the GLSL compiler
[libs/gl.git] / tests / glsl / function_inline_reorder.glsl
1 #pragma MSP stage(vertex)
2 vec4 func();
3 void main()
4 {
5         gl_Position = func();
6 }
7 layout(location=0) in vec4 position;
8 vec4 func()
9 {
10         return position;
11 }
12
13 /* Expected output: vertex
14 layout(location=0) in vec4 position;
15 void main()
16 {
17         gl_Position = position;
18 }
19 */