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/Helpers.hlsli
2022-03-19 18:07:52 -04:00

47 lines
1.1 KiB
HLSL

#ifndef __SHADER_HELPERS__
#define __SHADER_HELPERS__
// gets view vector, needed once per shader
float3 getView(float3 cameraPosition, float3 pixelWorldPosition)
{
return normalize(cameraPosition - pixelWorldPosition);
}
// gets reflection vector, needed per light
float3 getReflection(float3 direction, float3 normal)
{
return reflect(direction, normal);
}
// gets specular exponent: (1-roughness) * max
float getSpecularExponent(float roughness, float max)
{
return (1.0f - roughness) * max;
}
// gets specular value: clamp(dot(r,v))^e
float getSpecular(float3 view, float3 reflection, float exponent)
{
float specular = 0;
if (exponent > 0.05f)
{
specular = pow(saturate(dot(reflection, view)), exponent);
}
return specular;
}
// gets diffuse value: clamp(dot(n,d))
float getDiffuse(float3 normal, float3 direction)
{
return saturate(dot(normal, direction));
}
// gets attenuation: clamp(1 - (distance^2 / range^2))^2
float getAttenuation(float3 pointPosition, float3 worldPosition, float3 range)
{
float dist = distance(pointPosition, worldPosition);
float attn = saturate(1.0f - (dist * dist / (range * range)));
return attn * attn;
}
#endif