mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-16 06:12:28 +00:00
13 lines
237 B
GLSL
13 lines
237 B
GLSL
|
#version 300 es
|
||
|
#extension GL_OES_EGL_image_external : require
|
||
|
precision mediump float;
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
in vec2 vTextCoord;
|
||
|
|
||
|
uniform samplerExternalOES uTexture;
|
||
|
|
||
|
void main() {
|
||
|
FragColor = texture2D(uTexture, vTextCoord);
|
||
|
}
|