blob: a10a39b131bda1f6b8cc4737a80df94b8175c5ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#version 150 core
in vec4 position;
out vec2 Texcoord;
uniform vec2 screen;
void main()
{
Texcoord = vec2(position.z, position.w);
gl_Position = vec4(position.x / screen.x - 1, 1 - position.y / screen.y, 0.0, 1.0);
}
|