mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-16 05:45:54 +08:00
10 lines
138 B
GLSL
10 lines
138 B
GLSL
#version 110
|
|
|
|
uniform sampler2D u_sampler;
|
|
|
|
varying vec2 tex_coords;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(u_sampler, tex_coords);
|
|
} |