mirror of
https://github.com/SFML/SFML.git
synced 2024-11-26 05:11:04 +08:00
6 lines
113 B
GLSL
6 lines
113 B
GLSL
|
void main()
|
||
|
{
|
||
|
// Transform the vertex position
|
||
|
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
|
||
|
}
|