summaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/compiler/const-initializer/from-sequence-in-function.frag
blob: 0e398173d3d0969d97719698c111b7c3cb187a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#version 100

/* [config]
 * expect_result: pass
 * glsl_version: 1.00
 * [end config]
 *
 * Section 5.10 (Constant Expressions) of the GLSL ES 1.00.17 spec says:
 *
 *     "A constant expression is one of
 *
 *         ...
 *
 *         - a built-in function call whose arguments are all constant
 *           expressions, with the exception of the texture lookup functions."
 *
 * While the sequence operator is specifically disallowed as a constant
 * expression in GLSL ES 3.0 and later, it is allowed in GLSL ES 1.00.
 */

precision mediump float;

const float f = cos((1.0, 2.0));

void main()
{
    gl_FragData[0] = vec4(f);
}