Just pass-through wglSwapIntervalEXT as we don't care about it

This commit is contained in:
baldurk
2014-11-11 17:47:55 +00:00
parent 97fcde8402
commit 1fc1e632b3
+4
View File
@@ -482,6 +482,10 @@ class OpenGLHook : LibraryHook
glhooks.wglGetPixelFormatAttribivARB_realfunc = (PFNWGLGETPIXELFORMATATTRIBIVARBPROC)realFunc;
return (PROC)&wglGetPixelFormatAttribivARB_hooked;
}
if(!strcmp(func, "wglSwapIntervalEXT"))
{
return realFunc;
}
HookCheckGLExtensions();