You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/files/shaders/compatibility/depthclipped.vert

23 lines
463 B
GLSL

#version 120
varying vec2 diffuseMapUV;
varying float alphaPassthrough;
#include "lib/core/vertex.h.glsl"
#include "vertexcolors.glsl"
void main()
{
gl_Position = modelToClip(gl_Vertex);
vec4 viewPos = modelToView(gl_Vertex);
gl_ClipVertex = viewPos;
if (colorMode == 2)
alphaPassthrough = gl_Color.a;
else
alphaPassthrough = gl_FrontMaterial.diffuse.a;
diffuseMapUV = (gl_TextureMatrix[0] * gl_MultiTexCoord0).xy;
}