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

57 lines
1.5 KiB
HLSL

#ifndef __SHADER_HELPERS__
#define __SHADER_HELPERS__
// from environment map demo
static const float F0_NON_METAL = 0.04f;
// 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;
}
// from environment map demo
// gets fresnel (Schlick approx.): f0 + (1-f0)(1 - (n dot v))^5
float getFresnel(float3 normal, float3 view, float specularValue)
{
return specularValue + (1 - specularValue) * pow(1 - saturate(dot(normal, view)), 5);
}
#endif