fbo-mrt-alphatest: Actually require MRTs to be available.
[piglit.git] / tests / spec / arb_shading_language_420pack / compiler / line-continuation.frag
blob2306f355de08b5c6cce91c7606783e79a04be67b
1 /* [config]
2  * expect_result: pass
3  * glsl_version: 1.30
4  * require_extensions: GL_ARB_shading_language_420pack
5  * [end config]
6  */
8 /*
9  * The ARB_shading_language_420pack says:
10  * 
11  *    "Including the following line in a shader will enable module import and
12  *     related extended language features described in this extension:
13  *
14  *             #extension GL_ARB_shading_language_420pack : <behavior>
15  *
16  *     where <behavior> is as specified in section 3.3 for the #extension
17  *     directive."
18  *
19  * As a result, strictly speaking we need to enable the extension before line
20  * continuation is enabled.
21  */
22 #version 130
23 #extension GL_ARB_shading_language_420pack: enable
25 /* Make sure it works in comments too.*\
28 uniform vec4 f\
29 oo;
31 void main() {
32         gl_FragColor = foo;