ho3/resources/shaders/NIU/singlelight_parallax.vertex
Vladislav Khorev d132060e19 Resurrection
2024-06-06 16:25:38 +03:00

41 lines
867 B
Plaintext

/*
Bump/parallax mapping shader for single light source
Slower than directlight_parallax but faster than multilight_parallax
*/
uniform vec3 CamPos;
uniform mat3 ModelRotateMatrix;
uniform vec3 ModelTranslateVector;
attribute vec3 Tangent;
attribute vec3 Binormal;
varying vec2 texCoord;
varying vec3 camVec;
varying vec3 lightVec;
void main()
{
gl_Position = gl_ModelViewProjectionMatrix * vec4(ModelRotateMatrix * gl_Vertex.xyz + ModelTranslateVector, 1.0);
texCoord = gl_MultiTexCoord0.st;
vec3 lVec;
vec3 cVec = (CamPos - gl_Vertex.xyz);
if (gl_LightSource[0].position.w == 0.0)
lVec = gl_LightSource[0].position.xyz;
else
lVec = gl_LightSource[0].position.xyz - gl_Vertex.xyz;
mat3 rot;
rot[0] = Tangent;
rot[1] = Binormal;
rot[2] = gl_Normal.xyz;
rot = ModelRotateMatrix * rot;
lightVec = lVec * rot;
camVec = cVec * rot;
}