KlassischeKeplerKriege/game/renderer_polygon_3d/simple.vert

10 lines
132 B
GLSL
Raw Normal View History

R"raw_string(
#version 120
varying vec3 vertex;
void main()
{
gl_Position = gl_Vertex;
vertex = gl_Position.xyz;
}
)raw_string"