Files
Xenia-Canary/src/xenia/gpu/d3d12/shaders/stretch.ps.hlsl
2018-10-03 14:36:17 +03:00

7 lines
235 B
HLSL

Texture2D<float4> xe_texture : register(t0);
SamplerState xe_sampler_linear_clamp : register(s0);
float4 main(float2 xe_texcoord : TEXCOORD) : SV_Target {
return xe_texture.SampleLevel(xe_sampler_linear_clamp, xe_texcoord, 0.0f);
}