mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 00:52:04 +00: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);
|
|
}
|