15 lines
141 B
Text
15 lines
141 B
Text
|
#version 330 core
|
||
|
|
||
|
|
||
|
in vec2 TexCoord;
|
||
|
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
uniform sampler2D tex;
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = texture(tex, TexCoord);
|
||
|
}
|