celestia/shaders/depth_vert.glsl

7 lines
92 B
GLSL

attribute vec4 in_Position;
void main(void)
{
gl_Position = MVPMatrix * in_Position;
}