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

Side by Side Diff: src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp

Issue 1451683002: Initial version of external_oes texture support and unit test (Closed) Base URL: https://skia.googlesource.com/skia.git@target
Patch Set: again Created 5 years, 1 month 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
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 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 #include "gl/GrGLInterface.h" 8 #include "gl/GrGLInterface.h"
9 #include "gl/GrGLAssembleInterface.h" 9 #include "gl/GrGLAssembleInterface.h"
10 #include "gl/GrGLUtil.h" 10 #include "gl/GrGLUtil.h"
11 11
12 #include <EGL/egl.h> 12 #include <EGL/egl.h>
13 #include <GLES2/gl2.h> 13 #include <GLES2/gl2.h>
14 14
15 static GrGLFuncPtr egl_get_gl_proc(void* ctx, const char name[]) { 15 static GrGLFuncPtr egl_get_gl_proc(void* ctx, const char name[]) {
16 SkASSERT(nullptr == ctx); 16 SkASSERT(nullptr == ctx);
17 return eglGetProcAddress(name); 17 GrGLFuncPtr ptr = eglGetProcAddress(name);
18 if (!ptr) {
19 if (0 == strcmp("eglQueryString", name)) {
20 return (GrGLFuncPtr)eglQueryString;
21 } else if (0 == strcmp("eglGetCurrentDisplay", name)) {
22 return (GrGLFuncPtr)eglGetCurrentDisplay;
23 }
24 }
25 return ptr;
18 } 26 }
19 27
20 const GrGLInterface* GrGLCreateNativeInterface() { 28 const GrGLInterface* GrGLCreateNativeInterface() {
21 return GrGLAssembleInterface(nullptr, egl_get_gl_proc); 29 return GrGLAssembleInterface(nullptr, egl_get_gl_proc);
22 } 30 }
OLDNEW
« no previous file with comments | « src/gpu/gl/builders/GrGLProgramBuilder.cpp ('k') | src/gpu/gl/egl/SkCreatePlatformGLContext_egl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698