This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
Grayson Riffe (Laptop) 933d3f1fe9 Added Texture
2021-08-27 17:41:45 -05:00

12 lines
128 B
GLSL

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