mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
9 lines
157 B
HLSL
9 lines
157 B
HLSL
void F0(in float4 l0, out float4 l1);
|
|
|
|
void F0(in float4 l0, out float4 l1) {
|
|
float4 l2 = 0.0;
|
|
l2 = mul(l0, float4x4FromScalar(1.0));
|
|
l1 = l2;
|
|
return;
|
|
}
|