glslang/Test/spv.for-nobody.vert

8 lines
107 B
GLSL
Raw Normal View History

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