mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 16:48:21 +00:00
2993f7ae7d
This should prevent the looking-glass-client window from having an alpha channel. On Wayland, the alpha channel is used to compose the window onto the desktop, so the wallpaper would bleed through unless set to complete opaque. We worked around this by using constant alpha for rendering, but it was not sustainable. Instead, we should just ask for 24-bit context.
9 lines
92 B
GLSL
9 lines
92 B
GLSL
#version 300 es
|
|
|
|
out highp vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = vec4(0.0, 0.0, 1.0, 0.5);
|
|
}
|