1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

12 lines
217 B
GLSL
Raw Normal View History

2021-07-22 15:55:30 -07:00
#version 120
varying vec2 diffuseMapUV;
varying vec4 passColor;
void main()
{
gl_Position = vec4(gl_Vertex.xyz, 1.0);
diffuseMapUV = (gl_TextureMatrix[0] * gl_MultiTexCoord0).xy;
passColor = gl_Color;
}