orcaslicer/resources/shaders/140/flat_texture.fs
2023-11-04 11:41:05 +08:00

10 lines
142 B
GLSL

#version 140
uniform sampler2D uniform_texture;
in vec2 tex_coord;
void main()
{
gl_FragColor = texture(uniform_texture, tex_coord);
}