1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 09:37:53 +00:00
OpenMW/files/shaders/debug_vertex.glsl
2022-04-27 17:43:51 +02:00

13 lines
169 B
GLSL

#version 120
#include "openmw_vertex.h.glsl"
centroid varying vec4 passColor;
void main()
{
gl_Position = mw_modelToClip(gl_Vertex);
passColor = gl_Color;
}