summaryrefslogtreecommitdiff
path: root/tests/glslparsertest/glsl2/attribute-07.vert
blob: 8b7440365a1bedf876b8e91ba957ecd43b064ff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// [config]
// expect_result: fail
// glsl_version: 1.10
//
// [end config]

/* FAIL - attribute cannot have type bvec3 */
attribute bvec3 i;

void main()
{
  gl_Position = vec4(1.0);
}