OLD | NEW |
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(NULL == ctx); | 16 SkASSERT(nullptr == ctx); |
17 return eglGetProcAddress(name); | 17 return eglGetProcAddress(name); |
18 } | 18 } |
19 | 19 |
20 const GrGLInterface* GrGLCreateNativeInterface() { | 20 const GrGLInterface* GrGLCreateNativeInterface() { |
21 return GrGLAssembleInterface(NULL, egl_get_gl_proc); | 21 return GrGLAssembleInterface(nullptr, egl_get_gl_proc); |
22 } | 22 } |
OLD | NEW |