mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-16 07:15:52 +08:00
12 lines
151 B
GLSL
12 lines
151 B
GLSL
#version 140
|
|
|
|
uniform sampler2D u_sampler;
|
|
|
|
in vec2 tex_coords;
|
|
|
|
out vec4 frag_color;
|
|
|
|
void main()
|
|
{
|
|
frag_color = texture(u_sampler, tex_coords);
|
|
} |