moonlight-qt/app/shaders/d3d11_overlay_pixel.hlsl
2022-02-08 21:43:25 -06:00

13 lines
No EOL
288 B
HLSL

Texture2D<min16float4> theTexture : register(t0);
SamplerState theSampler : register(s0);
struct ShaderInput
{
min16float4 pos : SV_POSITION;
min16float2 tex : TEXCOORD0;
};
min16float4 main(ShaderInput input) : SV_TARGET
{
return theTexture.Sample(theSampler, input.tex);
}