mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-18 12:43:44 -04:00
12 lines
191 B
GLSL
12 lines
191 B
GLSL
#version 130
|
|
|
|
// Uniform inputs
|
|
uniform mat4 p3d_ModelViewProjectionMatrix;
|
|
|
|
// Vertex inputs
|
|
in vec4 p3d_Vertex;
|
|
|
|
void main() {
|
|
gl_Position = p3d_ModelViewProjectionMatrix * p3d_Vertex;
|
|
}
|