Danbias/Code/OysterGraphics/Shader/HLSL/Deffered Shaders/GatherGBuffer/PixelGatherData.hlsl

9 lines
206 B
HLSL

#include "GBufferHeader.hlsli"
PixelOut main(VertexOut input)
{
PixelOut output;
output.DiffuseGlow = Diffuse.Sample(Sampler, input.UV);
output.NormalSpec = float4(input.normal, 1.0f);
return output;
}