This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/SimplePixelShader.hlsl
Lightling 9ca7b66945
figure out why normals weren't correct
turns out i was passing camera transpose instead of entity transpose
2022-03-19 16:34:55 -04:00

16 lines
290 B
HLSL

#include "Includes.hlsli"
cbuffer ExternalData : register(b0)
{
float3 cameraPosition;
float roughness;
float3 ambient;
float3 tint;
Light directionalLight1;
}
float4 main(VertexToPixel input) : SV_TARGET
{
input.normal = normalize(input.normal);
return float4(input.normal, 1);
}