panda3d/samples/shader-terrain/skybox.vert.glsl
2016-02-20 14:05:50 +01:00

14 lines
272 B
GLSL

#version 150
// This is just a simple vertex shader transforming the skybox
in vec4 p3d_Vertex;
uniform mat4 p3d_ModelViewProjectionMatrix;
out vec3 skybox_pos;
void main() {
skybox_pos = p3d_Vertex.xyz;
gl_Position = p3d_ModelViewProjectionMatrix * p3d_Vertex;
}