aboutsummaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/implicit-conversion-08.vert
blob: 5efc04f2b48faab29939f0ec5abbca9b5e36bb2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* [config]
 * expect_result: fail
 * glsl_version: 1.20
 * [end config]
 */
#version 120

void main()
{
  ivec2 i = bvec2(false);
  gl_Position = vec4(0.0, 0.0, 0.0, 1.0);
}