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

in vec2 UV;

out vec3 color;

uniform sampler2D srctex;

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