Fix macro call for getting fn ptr to EXT version of glGetQueryObjectui64v on windows.
authorbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 20 Oct 2011 13:26:21 +0000 (13:26 +0000)
committerbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 20 Oct 2011 13:26:21 +0000 (13:26 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@2505 2bbb7eff-a529-9590-31e7-b0007b416f81

src/gpu/win/GrGLCreateNativeInterface_win.cpp

index e00a392..3c054f9 100644 (file)
@@ -124,7 +124,7 @@ const GrGLInterface* GrGLCreateNativeInterface() {
             GR_GL_GET_PROC(QueryCounter);
         } else if (GrGLHasExtensionFromString("GL_EXT_timer_query", extString)) {
             GR_GL_GET_PROC_SUFFIX(GetQueryObjecti64v, EXT);
-            GR_GL_GET_PROC(GetQueryObjectui64v, EXT);
+            GR_GL_GET_PROC_SUFFIX(GetQueryObjectui64v, EXT);
         }
         GR_GL_GET_PROC(GetProgramInfoLog);
         GR_GL_GET_PROC(GetProgramiv);