I use kivy in my application and try to create a transparent background window. I do this with:
Window.clearcolor = (1,1,1,0)
Window.clear()
That produces a white window - opaque.
Kivy directly calls glClearColor
from the OpenGL 4 API (https://www.khronos.org/opengl/).
The docs say, that the last parameter is the alpha channel so I expect my window to be transparent.
Do I have a mistake in my thinking or is this a bug?