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; ```