30 Sep
2025
30 Sep
'25
11:06 a.m.
Rémi Bernon (@rbernon) commented about dlls/win32u/opengl.c:
*/ funcs->p_eglBindAPI( EGL_OPENGL_API ); *context = funcs->p_eglCreateContext( egl->display, EGL_NO_CONFIG_KHR, share, attribs ? egl_attribs : NULL ); + + if ((err = funcs->p_eglGetError()) != EGL_SUCCESS || !*context) + { + WARN("Context creation failed (error %#x).\n", err);
```suggestion:-0+0 WARN( "Context creation failed (error %#x).\n", err ); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9052#note_117156