mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
a43efb66b2
Fixes #1267
10 lines
223 B
GLSL
10 lines
223 B
GLSL
void F0(in vec4 l0, out float l1, out float l2, out float l3, out float l4);
|
|
|
|
void F0(in vec4 l0, out float l1, out float l2, out float l3, out float l4) {
|
|
l1 = (l0).x;
|
|
l2 = (l0).y;
|
|
l3 = (l0).z;
|
|
l4 = (l0).w;
|
|
return;
|
|
}
|