mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
b211b79a5c
Updates #2247
13 lines
142 B
GLSL
13 lines
142 B
GLSL
vec4 F0(in vec4 l0);
|
|
|
|
vec4 F0(in vec4 l0) {
|
|
if (true) {
|
|
return l0;
|
|
}
|
|
return l0;
|
|
}
|
|
|
|
void main(void) {
|
|
gl_FragColor = F0(gl_FragCoord);
|
|
}
|