Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp

Issue 140823003: Move GrGLExtensions from GrGLContextInfo to GrGLInterface (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fix Android Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #include "gl/GrGLInterface.h" 10 #include "gl/GrGLInterface.h"
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 interface->fResolveMultisampleFramebuffer = glResolveMultisampleFramebufferA PPLE; 136 interface->fResolveMultisampleFramebuffer = glResolveMultisampleFramebufferA PPLE;
137 #endif 137 #endif
138 138
139 #if GL_OES_vertex_array_object 139 #if GL_OES_vertex_array_object
140 interface->fBindVertexArray = glBindVertexArrayOES; 140 interface->fBindVertexArray = glBindVertexArrayOES;
141 interface->fDeleteVertexArrays = glDeleteVertexArraysOES; 141 interface->fDeleteVertexArrays = glDeleteVertexArraysOES;
142 interface->fGenVertexArrays = glGenVertexArraysOES; 142 interface->fGenVertexArrays = glGenVertexArraysOES;
143 #endif 143 #endif
144 144
145 interface->fStandard = kGLES_GrGLStandard; 145 interface->fStandard = kGLES_GrGLStandard;
146 146 interface->fExtensions.init(kGLES_GrGLStandard, glGetString, NULL, glGetInte gerv);
147 return interface; 147 return interface;
148 } 148 }
OLDNEW
« no previous file with comments | « src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp ('k') | src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698