mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-18 00:05:53 +08:00
12 lines
205 B
GLSL
12 lines
205 B
GLSL
#version 140
|
|
|
|
uniform mat4 u_model_matrix;
|
|
uniform mat4 u_view_projection_matrix;
|
|
|
|
in vec3 v_position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = u_view_projection_matrix * u_model_matrix * vec4(v_position, 1.0);
|
|
}
|