aboutsummaryrefslogtreecommitdiff
path: root/Test/enhanced.5.frag
blob: b2a51e26a57dbacede36dd7764d5d75052aa715e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#version 450 core

layout (location = 0) out vec4 FragColor;

layout (location = 0) in VS_OUT
{
    vec3 TexCoords;
} fs_in;

layout (binding = 1) uniform sampler2D t0;

void main()
{             
    FragColor = texture(t0, fs_in.TexCoords.xy);   
}