BambuStudio/resources/shaders/110/mainframe_composite.vs
jun.zhang 9f060f9135 NEW: cherry-pick rendering-stuff to github branch
jira: no-jira

Change-Id: If615d572b2021e707cc9ff037fefeabf46dacfa4
2025-03-24 09:04:57 +08:00

12 lines
182 B
GLSL

#version 110
attribute vec3 v_position;
attribute vec2 v_tex_coord;
varying vec2 tex_coords;
void main()
{
tex_coords = v_tex_coord;
gl_Position = vec4(v_position, 1.0);
}