OpenGLTests/assets/shaders/textured.frag

12 lines
161 B
GLSL
Raw Normal View History

2020-09-07 08:44:51 +00:00
#version 460 core
in vec2 vertexUV;
out vec4 fragmentColor;
uniform sampler2D modelTexture;
void main()
{
fragmentColor = texture(modelTexture, vertexUV);
}