mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 16:48:21 +00:00
15 lines
215 B
GLSL
15 lines
215 B
GLSL
#version 300 es
|
|
|
|
precision mediump float;
|
|
|
|
layout(location = 0) in vec2 uVertex;
|
|
layout(location = 1) in vec2 uUV;
|
|
|
|
out vec2 fragCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(uVertex, 0.0, 1.0);
|
|
fragCoord = uUV;
|
|
}
|