12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
|
#version 330 core
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
in vec3 FragPos;
|
||
|
in vec2 TexCoords;
|
||
|
|
||
|
uniform sampler2D texture_diffuse1;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = texture(texture_diffuse1, TexCoords);
|
||
|
}
|