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/ToonShader.hlsl
2022-04-19 19:16:00 -04:00

37 lines
No EOL
642 B
HLSL

#include "Defines.hlsli"
#include "Helpers.hlsli"
#include "Lights.hlsli"
#define MAX_LIGHTS 128
cbuffer ExternalData : register(b0)
{
float3 cameraPosition;
float roughness;
float2 offset;
float2 scale;
float3 ambient;
float emitAmount;
float3 tint;
float lightCount;
int hasEmissiveMap;
int hasSpecularMap;
int hasNormalMap;
Light lights[MAX_LIGHTS];
}
Texture2D Albedo : register(t0);
Texture2D Specular : register(t1);
Texture2D Emissive : register(t2);
Texture2D Normal : register(t3);
SamplerState BasicSampler : register(s0);
float4 main(VertexToPixel input) : SV_TARGET
{
return float4(1.0f, 1.0f, 1.0f, 1.0f);
}