14 Nov
2025
14 Nov
'25
2:38 p.m.
Rémi Bernon (@rbernon) commented about dlls/winex11.drv/opengl.c:
*driver_funcs = &x11drv_driver_funcs; return STATUS_SUCCESS; } + else if (use_egl) + { + ERR( "Unable to initialize EGL; falling back to libGL\n" ); + use_egl = FALSE; + }
I don't think we want to print an error, it's just a default and we should let win32u actually decide to fallback. Let's just change to: ```suggestion:-4+0 use_egl = FALSE; ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9474#note_122099