aboutsummaryrefslogtreecommitdiff
path: root/src/simple150.frag
blob: 61b337edce8d20e5b614ccee1673be07df097bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#version 150

uniform sampler2D texture0;

in vec2 fragTexCoord;
in vec4 fragColor;

out vec4 pixelColor;

void main()
{
    // Output pixel color
    pixelColor = texture(texture0, fragTexCoord) * fragColor;
    //pixelColor = fragColor;
}