commit | e1ff231235ff7cb8bd559969f951e3f37e9fa96d | [log] [tgz] |
---|---|---|
author | John Kessenich <cepheus@frii.com> | Sat Dec 16 10:07:22 2017 -0700 |
committer | John Kessenich <cepheus@frii.com> | Sat Dec 16 10:07:22 2017 -0700 |
tree | b1b24d84843188cf22f10bd3ce23ea1a95b011d9 | |
parent | a0d60f2bea258f4b71b1bf9c5e21aef6fe23bca7 [diff] [blame] |
GLSL: Fix #1193: no 'location' on uniform/buffer block.
diff --git a/Test/450.vert b/Test/450.vert index 51e9b10..e99a133 100644 --- a/Test/450.vert +++ b/Test/450.vert
@@ -46,3 +46,11 @@ allInvocationsEqual(b1); // ERROR, need 4.6 } ; // ERROR: no extraneous semicolons + +layout(location = 0) uniform locBlock { // ERROR, no location uniform block + int a; +}; + +layout(location = 0) buffer locBuffBlock { // ERROR, no location on buffer block + int b; +};