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