Matteo Bruni matteo.mystral@gmail.com writes:
2015-02-10 13:41 GMT+01:00 Alexandre Julliard julliard@winehq.org:
Matteo Bruni mbruni@codeweavers.com writes:
@@ -834,6 +849,9 @@ PROC WINAPI wglGetProcAddress( LPCSTR name ) *func_ptr = driver_func; }
- if (!strcmp(name, "glGetStringi"))
return (void *)glGetStringi;
It seems to me you could handle this one through the extension table instead of special casing it.
Right, I can still go through the extension table just fine. It requires special handling in make_opengl instead but it does look nicer to me.
Is the attached patch more like what you expected to see?
Yes, that's better.