mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-14 15:37:09 +00:00
e5bcc793e5
Fixes #405
11 lines
226 B
GLSL
11 lines
226 B
GLSL
precision mediump float;
|
|
uniform sampler2D uTexture;
|
|
varying vec2 vTexCoord;
|
|
|
|
void main() {
|
|
vec4 abgr = texture2D(uTexture, vTexCoord);
|
|
|
|
gl_FragColor = abgr;
|
|
gl_FragColor.r = abgr.b;
|
|
gl_FragColor.b = abgr.r;
|
|
}
|