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

7 lines
124 B
HLSL

#include "common/pixel.hlsl"
// Pixel shader main function
float4 main(PSInput input) : SV_TARGET
{
return input.color;
}