From: bsalomon@google.com Date: Thu, 20 Oct 2011 13:26:21 +0000 (+0000) Subject: Fix macro call for getting fn ptr to EXT version of glGetQueryObjectui64v on windows. X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~17460 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e173992c2319205fdc263ccd10d7a9018c23013c;p=platform%2Fupstream%2FlibSkiaSharp.git Fix macro call for getting fn ptr to EXT version of glGetQueryObjectui64v on windows. git-svn-id: http://skia.googlecode.com/svn/trunk@2505 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/src/gpu/win/GrGLCreateNativeInterface_win.cpp b/src/gpu/win/GrGLCreateNativeInterface_win.cpp index e00a392..3c054f9 100644 --- a/src/gpu/win/GrGLCreateNativeInterface_win.cpp +++ b/src/gpu/win/GrGLCreateNativeInterface_win.cpp @@ -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);