mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-11 22:53:56 +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;
|
|
}
|