define light in shader

This commit is contained in:
lightling 2022-03-19 15:05:40 -04:00
parent 0d920c3722
commit cd4ea05aae
Signed by: lightling
GPG key ID: 016F11E0AA296B67
3 changed files with 26 additions and 2 deletions

View file

@ -1,6 +1,27 @@
#ifndef __SHADER_INCLUDES__
#define __SHADER_INCLUDES__
#define LIGHT_TYPE_DIRECTIONAL 0
#define LIGHT_TYPE_POINT 1
#define LIGHT_TYPE_SPOT 2
#define MAX_SPECULAR_EXPONENT 256.0f
struct Light
{
int Type;
float3 Direction;
float Range;
float3 Position;
float Intensity;
float3 Color;
float SpotFalloff;
float3 Padding;
};
// Struct representing the data we expect to receive from earlier pipeline stages
// - Should match the output of our corresponding vertex shader
// - The name of the struct itself is unimportant

View file

@ -1,8 +1,10 @@
#pragma once
#include <DirectXMath.h>
#define LIGHT_TYPE_DIRECTIONAL 0
#define LIGHT_TYPE_POINT 1
#define LIGHT_TYPE_SPOT 2
#include <DirectXMath.h>
struct Light
{

View file

@ -5,10 +5,11 @@ cbuffer ExternalData : register(b0)
float3 cameraPosition;
float roughness;
float3 ambient;
Light directionalLight1;
}
float4 main(VertexToPixel input) : SV_TARGET
{
input.normal = normalize(input.normal);
return float4(input.normal, 1);
return float4(directionalLight1.Color, 1);
}