Files
cell/shaders/rectangle.frag.hlsl
2025-01-09 19:31:08 -06:00

7 lines
124 B
HLSL

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