summary refs log tree commit diff stats
path: root/shaders/blit.fragment
blob: a96f2177885998150ac915fa30ca9bd9cd6f165f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#version 330 core

in vec2 UV;

out vec4 color;

uniform sampler2D srctex;

void main()
{
  color = texture(srctex, UV);
}