13 lines
153 B
GLSL
13 lines
153 B
GLSL
|
#version 330 core
|
||
|
|
||
|
in vec2 texCoord;
|
||
|
|
||
|
uniform sampler2D tex_diffuse;
|
||
|
|
||
|
out vec4 color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
color = texture(tex_diffuse, texCoord);
|
||
|
}
|
||
|
|