mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-15 22:15:53 +08:00
13 lines
152 B
GLSL
13 lines
152 B
GLSL
#version 140
|
|
|
|
uniform sampler2D u_texture;
|
|
|
|
in vec2 v_texcoord;
|
|
|
|
out vec4 frag_color;
|
|
|
|
void main()
|
|
{
|
|
frag_color = texture(u_texture, v_texcoord);
|
|
}
|