Panda3DS/src/host_shaders/opengl_display.frag
2023-07-16 22:01:14 +03:00

8 lines
No EOL
132 B
GLSL

#version 410 core
in vec2 UV;
out vec4 FragColor;
uniform sampler2D u_texture;
void main() {
FragColor = texture(u_texture, UV);
}