Files
Lucina3DS/externals/glslang/Test/spv.for-nobody.vert
2025-02-06 22:24:29 +08:00

8 lines
107 B
GLSL

#version 450
layout(location=0) out highp int r;
void main() {
int i;
for (i=0; i<10; i++);
r = i;
}