[glslang] Refine implicit array size interfaces. (#3074)
* [glslang] Refine implicit array size interfaces. Help to check builtin and other variables if across stages.
This commit is contained in:
8
Test/implicitArraySize.vert
Normal file
8
Test/implicitArraySize.vert
Normal file
@@ -0,0 +1,8 @@
|
||||
#version 460 core
|
||||
out float a[];
|
||||
out float c[];
|
||||
|
||||
void main(){
|
||||
a[0] = 0.1;
|
||||
c[5] = 0.1;
|
||||
}
|
||||
Reference in New Issue
Block a user