mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
14 lines
194 B
GLSL
14 lines
194 B
GLSL
|
#version 300 es
|
||
|
|
||
|
#ifdef GL_ES
|
||
|
precision lowp float;
|
||
|
#endif
|
||
|
|
||
|
uniform sampler2D image;
|
||
|
|
||
|
in vec2 tex;
|
||
|
layout(location = 0) out vec4 color;
|
||
|
void main()
|
||
|
{
|
||
|
color = texture(image, tex);
|
||
|
}
|