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