mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-25 23:07:09 +00:00
14 lines
206 B
GLSL
14 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;
|
|
}
|