mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-16 05:36:00 +08:00
12 lines
164 B
GLSL
12 lines
164 B
GLSL
#version 140
|
|
|
|
in vec3 v_position;
|
|
in vec2 v_tex_coord;
|
|
|
|
out vec2 tex_coords;
|
|
|
|
void main()
|
|
{
|
|
tex_coords = v_tex_coord;
|
|
gl_Position = vec4(v_position, 1.0);
|
|
} |