mirror of
https://github.com/panda3d/panda3d.git
synced 2026-05-03 13:10:19 -05:00
11 lines
179 B
GLSL
11 lines
179 B
GLSL
#version 120
|
|
|
|
#pragma include <glsl_include_inputs.glsl>
|
|
|
|
// Vertex inputs
|
|
attribute vec4 p3d_Vertex;
|
|
|
|
void main() {
|
|
gl_Position = p3d_ModelViewProjectionMatrix * p3d_Vertex;
|
|
}
|