summaryrefslogtreecommitdiffstats
path: root/src/render/shaders/gl3/unlittexture.frag
blob: 8abbeee8f759b372b2503dfda6f236c510bee0aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 150 core

uniform sampler2D diffuseTexture;

in vec3 position;
in vec2 texCoord;

out vec4 fragColor;

void main()
{
    fragColor = texture( diffuseTexture, texCoord );
}