mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-15 21:25:58 +08:00
12 lines
166 B
GLSL
12 lines
166 B
GLSL
#version 140
|
|
|
|
uniform sampler2D Texture;
|
|
|
|
in vec2 Frag_UV;
|
|
in vec4 color;
|
|
|
|
out vec4 frag_color;
|
|
void main()
|
|
{
|
|
frag_color = color * texture(Texture, Frag_UV.st);
|
|
} |