tes-tiger/resources/shader.fragment

12 lines
175 B
Plaintext
Raw Normal View History

2018-06-14 19:41:30 +00:00
#version 460 core
in vec2 fragmentTextureCoordinates;
uniform sampler2D sampler;
out vec4 color;
void main() {
color = texture(sampler, fragmentTextureCoordinates);
}