13 lines
235 B
GLSL
13 lines
235 B
GLSL
#version 410 core
|
|
|
|
layout(location = 0) in vec3 passColor;
|
|
layout(location = 1) in vec2 passTextureCoord;
|
|
|
|
layout(location = 0) out vec4 outColor;
|
|
|
|
uniform sampler2D tex;
|
|
|
|
void main() {
|
|
outColor = texture(tex, passTextureCoord);
|
|
}
|