mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 23:35:55 +00:00
15 lines
306 B
HLSL
15 lines
306 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;
|
|
};
|
|
|
|
cbuffer ChromaLimitBuf : register(b0)
|
|
{
|
|
min16float3 chromaTexMax;
|
|
};
|