Hi,
Any program based on electron/chrome I have to run with `--disable-gpu` otherwise they do not work.
My main concern now is linux programs built with flutter do not launch at all, with following errors:
Gdk-CRITICAL **: 15:56:58.760: gdk_gl_context_make_current: assertion 'GDK_IS_GL_CONTEXT (context)' failed
** WARNING **: 15:56:58.760: Failed to initialize GLArea: No available configurations for the given RGBA pixel format
Output of `glxinfo | grep "OpenGL renderer"`:
`OpenGL renderer string: NVIDIA GeForce RTX 4060 Ti/PCIe/SSE2`
I have tried some env vars like:
FLUTTER_SKIA_RENDERER=software GDK_RENDERING=software
__NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only __GLX_VENDOR_LIBRARY_NAME=nvidia
I am using xlibre, but had similar issues on xorg if i remember correctly.
Kernel is: Linux fsnlpc072 6.16.4-artix1-1 #1 SMP PREEMPT_DYNAMIC Fri, 29 Aug 2025 08:20:47 +0000 x86_64 GNU/Linux
I have disabled igp in bios and using only nvidia discreet card with nvidia proprietary drivers (nvidia-dkms).
Any ideas? thanks!