mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
9 lines
154 B
GLSL
9 lines
154 B
GLSL
void F0(in vec2 l0, out vec3 l1, out vec4 l2);
|
|
|
|
void F0(in vec2 l0, out vec3 l1, out vec4 l2) {
|
|
l1 = vec3(0);
|
|
l2 = vec4(0);
|
|
l1 = vec3(1.0);
|
|
return;
|
|
}
|