aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/rendernode_core.frag
blob: 7c187265df284f7b3a7ff4970748a7af6b43769e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 150 core

uniform sampler2D tex;

in vec2 t;

out vec4 color;

void main()
{
    fragColor = texture(tex, t);
}