mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
13228243b2
Change-Id: I5b53cc008349afad94b14500506fcab4d6e64d2e
8 lines
107 B
GLSL
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;
|
|
}
|