mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
13 lines
169 B
GLSL
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;
|
|
}
|