| 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 | 8 |
| 9 | 9 |
| 10 #include "GrGLAssembleInterface.h" | 10 #include "GrGLAssembleInterface.h" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 } | 58 } |
| 59 | 59 |
| 60 GET_PROC(BufferData); | 60 GET_PROC(BufferData); |
| 61 GET_PROC(BufferSubData); | 61 GET_PROC(BufferSubData); |
| 62 GET_PROC(Clear); | 62 GET_PROC(Clear); |
| 63 GET_PROC(ClearColor); | 63 GET_PROC(ClearColor); |
| 64 GET_PROC(ClearStencil); | 64 GET_PROC(ClearStencil); |
| 65 GET_PROC(ColorMask); | 65 GET_PROC(ColorMask); |
| 66 GET_PROC(CompileShader); | 66 GET_PROC(CompileShader); |
| 67 GET_PROC(CompressedTexImage2D); | 67 GET_PROC(CompressedTexImage2D); |
| 68 GET_PROC(CompressedTexSubImage2D); |
| 68 GET_PROC(CopyTexSubImage2D); | 69 GET_PROC(CopyTexSubImage2D); |
| 69 GET_PROC(CreateProgram); | 70 GET_PROC(CreateProgram); |
| 70 GET_PROC(CreateShader); | 71 GET_PROC(CreateShader); |
| 71 GET_PROC(CullFace); | 72 GET_PROC(CullFace); |
| 72 GET_PROC(DeleteBuffers); | 73 GET_PROC(DeleteBuffers); |
| 73 GET_PROC(DeleteProgram); | 74 GET_PROC(DeleteProgram); |
| 74 GET_PROC(DeleteQueries); | 75 GET_PROC(DeleteQueries); |
| 75 GET_PROC(DeleteShader); | 76 GET_PROC(DeleteShader); |
| 76 GET_PROC(DeleteTextures); | 77 GET_PROC(DeleteTextures); |
| 77 GET_PROC(DepthMask); | 78 GET_PROC(DepthMask); |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 GET_PROC(InvalidateSubFramebuffer); | 286 GET_PROC(InvalidateSubFramebuffer); |
| 286 GET_PROC(InvalidateTexImage); | 287 GET_PROC(InvalidateTexImage); |
| 287 GET_PROC(InvalidateTexSubImage); | 288 GET_PROC(InvalidateTexSubImage); |
| 288 } | 289 } |
| 289 | 290 |
| 290 interface->fStandard = kGL_GrGLStandard; | 291 interface->fStandard = kGL_GrGLStandard; |
| 291 interface->fExtensions.swap(&extensions); | 292 interface->fExtensions.swap(&extensions); |
| 292 | 293 |
| 293 return interface; | 294 return interface; |
| 294 } | 295 } |
| OLD | NEW |