OLD | NEW |
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 #include "gl/GrGLExtensions.h" | 9 #include "gl/GrGLExtensions.h" |
10 #include "gl/GrGLInterface.h" | 10 #include "gl/GrGLInterface.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 } | 59 } |
60 | 60 |
61 GR_GL_GET_PROC(BufferData); | 61 GR_GL_GET_PROC(BufferData); |
62 GR_GL_GET_PROC(BufferSubData); | 62 GR_GL_GET_PROC(BufferSubData); |
63 GR_GL_GET_PROC(Clear); | 63 GR_GL_GET_PROC(Clear); |
64 GR_GL_GET_PROC(ClearColor); | 64 GR_GL_GET_PROC(ClearColor); |
65 GR_GL_GET_PROC(ClearStencil); | 65 GR_GL_GET_PROC(ClearStencil); |
66 GR_GL_GET_PROC(ColorMask); | 66 GR_GL_GET_PROC(ColorMask); |
67 GR_GL_GET_PROC(CompileShader); | 67 GR_GL_GET_PROC(CompileShader); |
68 GR_GL_GET_PROC(CompressedTexImage2D); | 68 GR_GL_GET_PROC(CompressedTexImage2D); |
| 69 GR_GL_GET_PROC(CopyTexSubImage2D); |
69 GR_GL_GET_PROC(CreateProgram); | 70 GR_GL_GET_PROC(CreateProgram); |
70 GR_GL_GET_PROC(CreateShader); | 71 GR_GL_GET_PROC(CreateShader); |
71 GR_GL_GET_PROC(CullFace); | 72 GR_GL_GET_PROC(CullFace); |
72 GR_GL_GET_PROC(DeleteBuffers); | 73 GR_GL_GET_PROC(DeleteBuffers); |
73 GR_GL_GET_PROC(DeleteProgram); | 74 GR_GL_GET_PROC(DeleteProgram); |
74 GR_GL_GET_PROC(DeleteQueries); | 75 GR_GL_GET_PROC(DeleteQueries); |
75 GR_GL_GET_PROC(DeleteShader); | 76 GR_GL_GET_PROC(DeleteShader); |
76 GR_GL_GET_PROC(DeleteTextures); | 77 GR_GL_GET_PROC(DeleteTextures); |
77 GR_GL_GET_PROC(DepthMask); | 78 GR_GL_GET_PROC(DepthMask); |
78 GR_GL_GET_PROC(Disable); | 79 GR_GL_GET_PROC(Disable); |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 delete interface; | 208 delete interface; |
208 return NULL; | 209 return NULL; |
209 } | 210 } |
210 GR_GL_GET_PROC(BindFragDataLocationIndexed); | 211 GR_GL_GET_PROC(BindFragDataLocationIndexed); |
211 interface->fBindingsExported = kDesktop_GrGLBinding; | 212 interface->fBindingsExported = kDesktop_GrGLBinding; |
212 return interface; | 213 return interface; |
213 } else { | 214 } else { |
214 return NULL; | 215 return NULL; |
215 } | 216 } |
216 } | 217 } |
OLD | NEW |