mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-17 06:15:56 +08:00

jira: STUDIO-8928 Change-Id: Ia64a96e7e13e65d8be85fddfedcfdc4e5cff4ed5 (cherry picked from commit f090726830ea0490994b62c93c93e18ead731681)
12 lines
212 B
GLSL
12 lines
212 B
GLSL
#version 110
|
|
|
|
uniform mat4 u_model_matrix;
|
|
uniform mat4 u_view_projection_matrix;
|
|
|
|
attribute vec3 v_position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = u_view_projection_matrix * u_model_matrix * vec4(v_position, 1.0);
|
|
}
|