Files
prosperon/shaders/post.frag.hlsl
2025-11-22 09:43:51 -06:00

11 lines
254 B
HLSL

#include "common/pixel.hlsl"
Texture2D diffuse : register(t0, space2);
SamplerState smp : register(s0, space2);
// Pixel shader main function
float4 main(PSInput input) : SV_TARGET
{
float4 color = diffuse.Sample(smp, input.uv);
return color;
}