Dengine/data/shaders/sprite.frag.glsl

12 lines
127 B
Plaintext
Raw Normal View History

#version 330 core
in vec2 texCoord;
out vec4 color;
uniform sampler2D tex;
void main()
{
color = texture(tex, texCoord);
}