mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
4a96885323
Move tangent space generation to the vertex shaders Support diffuse parallax when no normal map is present Don't use diffuse parallax if there's no diffuse map Generalize normal-to-view conversion Rewrite parallax
13 lines
284 B
GLSL
13 lines
284 B
GLSL
#ifndef LIB_MATERIAL_PARALLAX
|
|
#define LIB_MATERIAL_PARALLAX
|
|
|
|
#define PARALLAX_SCALE 0.04
|
|
#define PARALLAX_BIAS -0.02
|
|
|
|
vec2 getParallaxOffset(vec3 eyeDir, float height, float flipY)
|
|
{
|
|
return vec2(eyeDir.x, eyeDir.y * flipY) * ( height * PARALLAX_SCALE + PARALLAX_BIAS );
|
|
}
|
|
|
|
#endif
|