11 lines
No EOL
137 B
Text
11 lines
No EOL
137 B
Text
#version 330 core
|
|
|
|
uniform sampler2D sampler;
|
|
|
|
in vec2 texCoords;
|
|
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = texture(sampler, texCoords);
|
|
} |