tes-tiger/resources/shader.fragment
2018-06-15 00:41:30 +05:00

12 lines
175 B
Plaintext

#version 460 core
in vec2 fragmentTextureCoordinates;
uniform sampler2D sampler;
out vec4 color;
void main() {
color = texture(sampler, fragmentTextureCoordinates);
}