arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-size-constant-cast.vert
blobc2a568cff6da11eccc37ac71299b9501cf90e7b7
1 /* [config]
2  * expect_result: pass
3  * glsl_version: 1.20
4  * [end config]
5  *
6  * From page 19 (page 25 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "When an array size is specified in a declaration, it must be an
9  *     integral constant expression (see Section 4.3.3 "Constant Expressions")
10  *     greater than zero."
11  */
12 #version 120
14 const float size = 3.14159;
15 uniform vec4 [int(size)] a;
17 void main() { gl_Position = vec4(0.0); }