mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 06:53:53 +00:00
12 lines
167 B
GLSL
12 lines
167 B
GLSL
#version 120
|
|
|
|
#include "openmw_vertex.glsl"
|
|
|
|
centroid varying vec4 passColor;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = mw_modelToClip(gl_Vertex);
|
|
|
|
passColor = gl_Color;
|
|
}
|