11 lines
153 B
GLSL
11 lines
153 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
|
|
uniform sampler2D ourTexture;
|
|
|
|
in vec2 TexCoord;
|
|
|
|
void main() {
|
|
FragColor = texture(ourTexture, TexCoord);
|
|
};
|