1
0
Fork 0
fgdata/Shaders/transition-gbuffer.vert
Emilian Huminiuc 8fa569e77f make transition effect Rembrandt compatible.
Note: this is the transition effect used by the materials-dds.xml
Signed-off-by: Emilian Huminiuc <emilianh@gmail.com>
2012-06-28 23:43:08 +03:00

17 lines
353 B
GLSL

// -*- mode: C; -*-
// Licence: GPL v2
// Authors: Frederic Bouvier, Emilian Huminiuc
//
varying vec4 RawPos;
varying vec3 normal;
varying vec3 Vnormal;
void main() {
RawPos = gl_Vertex;
gl_Position = ftransform();
gl_TexCoord[0] = gl_TextureMatrix[0] * gl_MultiTexCoord0;
normal = normalize(gl_Normal);
Vnormal = gl_NormalMatrix * gl_Normal;
}