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?