mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
12 lines
166 B
GLSL
12 lines
166 B
GLSL
#version 110
|
|
|
|
uniform mat4 world_matrix;
|
|
|
|
varying float world_pos_z;
|
|
|
|
void main()
|
|
{
|
|
world_pos_z = (world_matrix * gl_Vertex).z;
|
|
gl_Position = ftransform();
|
|
}
|