ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / preprocessor / extension-if-1.shader_test
blobc04ee7c60942f0b3232d1c68aed871297252c353
1 # This test will only be run if we have the GL_ARB_draw_buffers
2 # extension.  Note the FLAG_ARB_DRAW_BUFFERS flag.
4 [require]
5 GLSL >= 1.10
6 GL_ARB_DRAW_BUFFERS
8 [fragment shader]
9 #extension GL_ARB_draw_buffers: enable
10 void main()
12 #if GL_ARB_draw_buffers == 1
13         gl_FragData[0] = vec4(0.0, 1.0, 0.0, 0.0);
14 #else
15         gl_FragColor = vec4(1.0, 0.0, 0.0, 0.0);
16 #endif
20 [test]
21 draw rect -1 -1 2 2
22 relative probe rgba (0.5, 0.5) (0.0, 1.0, 0.0, 0.0)