mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-15 23:16:00 +08:00
11 lines
159 B
GLSL
11 lines
159 B
GLSL
#version 110
|
|
|
|
uniform sampler2D Texture;
|
|
|
|
varying vec2 Frag_UV;
|
|
varying vec4 color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = color * texture2D(Texture, Frag_UV.st);
|
|
} |