mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
13 lines
174 B
GLSL
13 lines
174 B
GLSL
#version 300 es
|
|
precision mediump float;
|
|
|
|
in vec2 fragCoord;
|
|
out vec4 fragColor;
|
|
|
|
uniform sampler2D texture;
|
|
|
|
void main()
|
|
{
|
|
fragColor = texture2D(texture, fragCoord);
|
|
}
|