aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/unix/GrGLCreateNativeInterface_unix.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-10-19 21:35:26 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-10-19 21:35:26 +0000
commitf97c194df7d38e45ae8bf03e276141c914ff6d8e (patch)
tree4a817c7d2a32638d288f5bc248e25778c179b32c /src/gpu/unix/GrGLCreateNativeInterface_unix.cpp
parentba3664285b5b8d776b6f0c8e4c9f4faabe58a881 (diff)
GrGLInterface fixes wrt r2499
git-svn-id: http://skia.googlecode.com/svn/trunk@2502 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/unix/GrGLCreateNativeInterface_unix.cpp')
-rw-r--r--src/gpu/unix/GrGLCreateNativeInterface_unix.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gpu/unix/GrGLCreateNativeInterface_unix.cpp b/src/gpu/unix/GrGLCreateNativeInterface_unix.cpp
index 90338a5992..dc2da9a88f 100644
--- a/src/gpu/unix/GrGLCreateNativeInterface_unix.cpp
+++ b/src/gpu/unix/GrGLCreateNativeInterface_unix.cpp
@@ -91,8 +91,8 @@ const GrGLInterface* GrGLCreateNativeInterface() {
GR_GL_GET_PROC(GetQueryObjectui64v);
GR_GL_GET_PROC(QueryCounter);
} else if (GrGLHasExtensionFromString("GL_EXT_timer_query", extString)) {
- GR_GL_GET_PROC_SUFFIX(GetQueryObjecti64v, "EXT");
- GR_GL_GET_PROC_SUFFIX(GetQueryObjectui64v, "EXT");
+ GR_GL_GET_PROC_SUFFIX(GetQueryObjecti64v, EXT);
+ GR_GL_GET_PROC_SUFFIX(GetQueryObjectui64v, EXT);
}
GR_GL_GET_PROC(GetQueryiv);
GR_GL_GET_PROC(GetProgramInfoLog);
@@ -111,7 +111,6 @@ const GrGLInterface* GrGLCreateNativeInterface() {
interface->fMatrixMode = glMatrixMode;
interface->fPointSize = glPointSize;
interface->fPixelStorei = glPixelStorei;
-
interface->fReadBuffer = glReadBuffer;
interface->fReadPixels = glReadPixels;
interface->fScissor = glScissor;