mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
8 lines
94 B
GLSL
8 lines
94 B
GLSL
#version 310 es
|
|
void main() {
|
|
int i;
|
|
int j;
|
|
for (i=0; i < 10 ; i++) {
|
|
j = 12;
|
|
}
|
|
}
|