mirror of
https://github.com/panda3d/panda3d.git
synced 2025-11-02 19:43:08 -05:00
11 lines
172 B
GLSL
11 lines
172 B
GLSL
#version 150
|
|
|
|
#pragma include "glsl_include_inputs.glsl"
|
|
|
|
// Vertex inputs
|
|
in vec4 p3d_Vertex;
|
|
|
|
void main() {
|
|
gl_Position = p3d_ModelViewProjectionMatrix * p3d_Vertex;
|
|
}
|