mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
12 lines
201 B
HLSL
12 lines
201 B
HLSL
void F0(out float l0, out float l1[4], out float4 l2);
|
|
|
|
void F0(out float l0, out float l1[4], out float4 l2) {
|
|
l0 = 0.0;
|
|
l1[0] = 0.0;
|
|
l1[1] = 0.0;
|
|
l1[2] = 0.0;
|
|
l1[3] = 0.0;
|
|
l2 = 0.0;
|
|
return;
|
|
}
|