mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
f6c3e0579f
Adopted the same precision of (*math/big.Float).String().
11 lines
182 B
GLSL
11 lines
182 B
GLSL
attribute vec2 A0;
|
|
|
|
void main(void) {
|
|
vec4 l0 = vec4(0);
|
|
for (float l1 = 0.0; l1 < 4.0; l1++) {
|
|
(l0).x = ((l0).x) + ((l1) * (1.0000000000e-02));
|
|
}
|
|
gl_Position = l0;
|
|
return;
|
|
}
|