mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 07:15:27 +00:00
9 lines
183 B
HLSL
9 lines
183 B
HLSL
#include "d3d11_yuv444_pixel_start.hlsli"
|
|
|
|
min16float3 swizzle(min16float3 input)
|
|
{
|
|
// AYUV SRVs are in VUYA order
|
|
return input.bgr;
|
|
}
|
|
|
|
#include "d3d11_yuv444_pixel_end.hlsli" |