mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
b6a340a96f
Updates #2034 Updates #2188
8 lines
124 B
HLSL
8 lines
124 B
HLSL
float4 F0(in float4 l0);
|
|
|
|
float4 F0(in float4 l0) {
|
|
float4 l1 = 0.0;
|
|
l1 = mul(l0, float4x4FromScalar(1.0));
|
|
return l1;
|
|
}
|