1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 06:23:53 +00:00
openmw/files/shaders/parallax.glsl

9 lines
261 B
Text
Raw Normal View History

2016-03-22 20:15:20 +00:00
#define PARALLAX_SCALE 0.04
#define PARALLAX_BIAS -0.02
vec2 getParallaxOffset(vec3 eyeDir, mat3 tbn, float height)
{
vec3 TSeyeDir = normalize((vec4(normalize(tbn * eyeDir),0)).xyz);
return TSeyeDir.xy * ( height * PARALLAX_SCALE + PARALLAX_BIAS );
}