mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-25 07:24:26 +08:00
11 lines
174 B
GLSL
11 lines
174 B
GLSL
#version 110
|
|
|
|
attribute vec3 v_position;
|
|
|
|
uniform mat4 projection_view_model_matrix;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = projection_view_model_matrix * vec4(v_position, 1.0);
|
|
}
|