1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 06:23:53 +00:00
openmw/files/shaders/debug_vertex.glsl

13 lines
194 B
Text
Raw Normal View History

#version 120
uniform mat4 projectionMatrix;
centroid varying vec4 passColor;
void main()
{
gl_Position = projectionMatrix * (gl_ModelViewMatrix * gl_Vertex);
passColor = gl_Color;
}