mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 21:58:03 -06:00
11 lines
166 B
GLSL
11 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();
|
|
}
|