mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
9 lines
123 B
Forth
9 lines
123 B
Forth
|
uniform vec2 U0;
|
||
|
varying vec2 V0;
|
||
|
varying vec4 V1;
|
||
|
|
||
|
void main(void) {
|
||
|
gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);
|
||
|
return;
|
||
|
}
|