First Commit
This commit is contained in:
8
externals/glslang/Test/310implicitSizeArrayError.vert
vendored
Normal file
8
externals/glslang/Test/310implicitSizeArrayError.vert
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
#version 310 es
|
||||
layout (binding=0) uniform Block {
|
||||
highp int a[];
|
||||
} uni;
|
||||
layout (location=0) out highp int o;
|
||||
void main() {
|
||||
o = uni.a[2];
|
||||
}
|
||||
Reference in New Issue
Block a user