sockscape/resources/client/shaders/test.frag

9 lines
160 B
GLSL
Raw Normal View History

2018-08-16 21:39:13 +00:00
#version 330 core
in vec2 texCoords;
uniform sampler2D graphicSampler;
out vec4 fragColor;
void main() {
fragColor = texture(graphicSampler, texCoords);
}