Files
wgpu/tests/in/glsl/global-constant-array.vert
2021-09-17 13:47:38 -04:00

7 lines
91 B
GLSL

#version 450 core
uint i;
const float[2] array = { 1.0, 2.0 };
void main() { array[i]; }