1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 20:53:53 +00:00
openmw/files/shaders/s360_vertex.glsl

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

10 lines
139 B
Text
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
}