mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
15 lines
206 B
GLSL
15 lines
206 B
GLSL
|
#version 300 es
|
||
|
|
||
|
precision mediump float;
|
||
|
|
||
|
layout(location = 0) in vec2 uVertex;
|
||
|
layout(location = 1) in vec2 uUV;
|
||
|
|
||
|
out vec2 iFragCoord;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position.xy = uVertex;
|
||
|
iFragCoord = uUV;
|
||
|
}
|