1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/files/shaders/fullscreen_tri_vertex.glsl

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

12 lines
166 B
Plaintext
Raw Normal View History

2022-05-14 01:58:00 +00:00
#version 120
varying vec2 uv;
2022-06-21 15:55:06 +00:00
#include "openmw_vertex.h.glsl"
2022-05-14 01:58:00 +00:00
void main()
{
gl_Position = vec4(gl_Vertex.xy, 0.0, 1.0);
uv = gl_Position.xy * 0.5 + 0.5;
}