28 Feb
2024
28 Feb
'24
8:37 a.m.
Rémi Bernon (@rbernon) commented about dlls/winewayland.drv/opengl.c:
return wgl_extensions; }
+static PROC wayland_wglGetProcAddress(LPCSTR name) +{ + PROC ret; + if (!strncmp(name, "wgl", 3)) return NULL; + ret = (PROC)p_eglGetProcAddress(name); + TRACE("%s -> %p\n", name, ret); + return ret;
Do we really need to trace these? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5177#note_62902