12 lines
175 B
Plaintext
12 lines
175 B
Plaintext
|
#version 460 core
|
||
|
|
||
|
in vec2 fragmentTextureCoordinates;
|
||
|
|
||
|
uniform sampler2D sampler;
|
||
|
|
||
|
out vec4 color;
|
||
|
|
||
|
void main() {
|
||
|
color = texture(sampler, fragmentTextureCoordinates);
|
||
|
}
|