1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/files/shaders/compatibility/s360.vert

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
139 B
GLSL
Raw Normal View History

2017-11-15 14:20:59 +00:00
#version 120
varying vec2 uv;
void main(void)
{
gl_Position = gl_Vertex;
2017-11-15 16:01:16 +00:00
uv = (gl_Vertex.xy * vec2(1.0,-1.0) + vec2(1.0)) / 2;
2017-11-15 14:20:59 +00:00
}