John Kessenich | 01fc064 | 2013-06-24 21:22:03 +0000 | [diff] [blame] | 1 | #version 420 core |
| 2 | |
| 3 | varying vec2 v2; // ERROR, varying reserved |
| 4 | in vec4 bad[10]; |
| 5 | highp in vec4 badorder; |
| 6 | out invariant vec4 badorder2; |
| 7 | in centroid vec4 badorder4; // ERROR, no centroid input to vertex stage |
| 8 | out flat vec4 badorder3; |
| 9 | void bar(in const float a); |
| 10 | void bar2(highp in float b); |
| 11 | smooth flat out vec4 rep; // ERROR, replicating interpolation qualification |
| 12 | centroid sample out vec4 rep2; // ERROR, replicating auxiliary qualification |
| 13 | in uniform vec4 rep3; // ERROR, replicating storage qualification |
John Kessenich | d46b31f | 2013-08-27 03:59:04 +0000 | [diff] [blame] | 14 | |
John Kessenich | e46b087 | 2013-10-17 20:55:30 +0000 | [diff] [blame] | 15 | int anonconst; |
| 16 | const int aconst = 5; |
| 17 | const int a = aconst; |
| 18 | const int b = anonconst; // ERROR at global scope |
| 19 | |
| 20 | const int foo() // ERROR, no const functions |
| 21 | { |
| 22 | const int a = aconst; |
| 23 | const int b = anonconst; |
| 24 | const int c = a; // still compile-time const |
| 25 | const int d = b; // not a compile-time const |
| 26 | float x[c]; // okay |
| 27 | float y[d]; // ERROR |
| 28 | |
| 29 | return b; |
| 30 | } |
| 31 | |
John Kessenich | d46b31f | 2013-08-27 03:59:04 +0000 | [diff] [blame] | 32 | void main() |
| 33 | { |
| 34 | int i; |
| 35 | if (i == 3) |
| 36 | int j = i; |
| 37 | else |
| 38 | int k = j; // ERROR, j is undeclared |
| 39 | int m = k; // ERROR, k is undeclared |
| 40 | int n = j; // ERROR, j is undeclared |
| 41 | |
| 42 | while (true) |
| 43 | int jj; |
| 44 | int kk = jj; // ERROR, jj is undeclared |
| 45 | } |
| 46 | |
John Kessenich | 8f13e13 | 2013-10-18 03:56:23 +0000 | [diff] [blame] | 47 | const float cx = 4.20; |
| 48 | const float dx = 4.20; |
| 49 | |
John Kessenich | d46b31f | 2013-08-27 03:59:04 +0000 | [diff] [blame] | 50 | void bar(in highp volatile vec4 v) |
| 51 | { |
John Kessenich | 8f13e13 | 2013-10-18 03:56:23 +0000 | [diff] [blame] | 52 | int s; |
| 53 | s.x; // okay |
| 54 | s.y; // ERROR |
| 55 | if (bad[0].x == cx.x) |
| 56 | ; |
| 57 | if (cx.x == dx.x) |
| 58 | badorder3 = bad[0]; |
| 59 | |
| 60 | float f; |
| 61 | vec3 smeared = f.xxx; |
| 62 | f.xxxxx; // ERROR |
| 63 | f.xxy; // ERROR |
| 64 | } |
John Kessenich | ab30803 | 2013-10-18 21:37:55 +0000 | [diff] [blame] | 65 | |
| 66 | layout(binding = 3) uniform; // ERROR |
| 67 | layout(binding = 3) uniform boundblock { int aoeu; } boundInst; |
| 68 | layout(binding = 7) uniform anonblock { int aoeu; } ; |
| 69 | layout(location = 1) in; // ERROR |
| 70 | layout(binding = 1) in inblock { int aoeua; }; // ERROR |
| 71 | layout(binding = 100000) uniform anonblock2 { int aooeu; } ; |
| 72 | layout(binding = 4) uniform sampler2D sampb1; |
| 73 | layout(binding = 5) uniform sampler2D sampb2[10]; |
John Kessenich | 1fbaa35 | 2013-11-27 02:41:52 +0000 | [diff] [blame] | 74 | layout(binding = 32) uniform sampler2D sampb3; // ERROR, binding too big |
| 75 | layout(binding = 31) uniform sampler2D sampb4; |
| 76 | layout(binding = 31) uniform sampler2D sampb5[2]; // ERROR, binding too big |
John Kessenich | 143c8bf | 2013-12-03 21:04:03 +0000 | [diff] [blame^] | 77 | |
| 78 | int fgfg(float f, mediump int i); |
| 79 | int fgfg(float f, highp int i); |