aboutsummaryrefslogtreecommitdiff
path: root/08-august/resources/shaders/passShader.frag
blob: 4c8dec1dc89ac3f5c1aa2e0a06ffa318d9ea80f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 420

in vec4 Fragment_Color;
in vec2 Fragment_Uv;

out vec4 out_color;

uniform sampler2D Texture;

void main()
{
    out_color = Fragment_Color * texture(Texture, Fragment_Uv);
}