uno icon indicating copy to clipboard operation
uno copied to clipboard

[desktop] Provide a list of environment variables to control which backends are used

Open jeromelaban opened this issue 10 months ago • 1 comments

What would you like to be added

The ability to control X11/Framebuffer on linux using environment variables, to force framebuffer even if X11 is available.

Why is this needed

Local configuration without having to rebuild

For which platform

Skia (Linux Framebuffer)

Anything else we need to know?

No response

jeromelaban avatar Apr 23 '24 14:04 jeromelaban

Shouldn't this be controlled in the SkiaHostBuilder instead? i.e.

SkiaHostBuilder.Create()
				...
				.UseX11()
				.UseLinuxFrameBuffer()
```				
should use X11 if available and fall back to FB, while

SkiaHostBuilder.Create() ... .UseLinuxFrameBuffer() .UseX11()

should do the opposite, no?

ramezgerges avatar Apr 26 '24 09:04 ramezgerges