mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
8 lines
198 B
HLSL
8 lines
198 B
HLSL
|
Texture2D samp0 : register(t0);
|
||
|
SamplerState samp0_ss : register(s0);
|
||
|
|
||
|
void main(in float2 v_tex0 : TEXCOORD0,
|
||
|
out float4 o_col0 : SV_Target)
|
||
|
{
|
||
|
o_col0 = samp0.Sample(samp0_ss, v_tex0);
|
||
|
}
|