mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-17 22:53:06 +00:00
9 lines
231 B
HLSL
9 lines
231 B
HLSL
|
Texture2D<min16float> luminancePlane : register(t0);
|
||
|
Texture2D<min16float2> chrominancePlane : register(t1);
|
||
|
SamplerState theSampler : register(s0);
|
||
|
|
||
|
struct ShaderInput
|
||
|
{
|
||
|
float4 pos : SV_POSITION;
|
||
|
float2 tex : TEXCOORD0;
|
||
|
};
|