diff options
author | twiz@google.com <twiz@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-03-15 16:12:21 +0000 |
---|---|---|
committer | twiz@google.com <twiz@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-03-15 16:12:21 +0000 |
commit | dc008e17104fc544d2b80c09c9835cf173c25b50 (patch) | |
tree | fa0a62b96c2ce0eb3a8040b7fe5a092d512f652b | |
parent | 98539c607b05f7e25406ae873bf1b24154a36a6f (diff) |
Correction of GLES build issue introduced by in revision:
http://code.google.com/p/skia/source/detail?r=937
Issue: http://code.google.com/p/skia/issues/detail?id=174
Review: http://codereview.appspot.com/4288047/
git-svn-id: http://skia.googlecode.com/svn/trunk@940 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | gpu/src/GrGLInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/src/GrGLInterface.cpp b/gpu/src/GrGLInterface.cpp index e74d29d497..f296be7cb6 100644 --- a/gpu/src/GrGLInterface.cpp +++ b/gpu/src/GrGLInterface.cpp @@ -226,7 +226,7 @@ void InitializeGLInterfaceExtensions(GrGLInterface* glBindings) { void GrGLInitializeGLInterface(GrGLInterface* glBindings) { Gr_bzero(glBindings, sizeof(GrGLInterface)); -#if GR_SUPPORT_GLDESKTOP +#if GR_SUPPORT_GLDESKTOP || GR_SUPPORT_GLES1 // These entry points only exist on desktop GL implementations. GR_GL_GET_PROC_SYMBOL(Color4ub); GR_GL_GET_PROC_SYMBOL(ColorPointer); |