| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 error::Error DoActiveTexture(GLenum texture); | 5 error::Error DoActiveTexture(GLenum texture); |
| 6 error::Error DoAttachShader(GLuint program, GLuint shader); | 6 error::Error DoAttachShader(GLuint program, GLuint shader); |
| 7 error::Error DoBindAttribLocation(GLuint program, | 7 error::Error DoBindAttribLocation(GLuint program, |
| 8 GLuint index, | 8 GLuint index, |
| 9 const char* name); | 9 const char* name); |
| 10 error::Error DoBindBuffer(GLenum target, GLuint buffer); | 10 error::Error DoBindBuffer(GLenum target, GLuint buffer); |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 GLenum type, | 711 GLenum type, |
| 712 GLuint offset, | 712 GLuint offset, |
| 713 uint32_t* result); | 713 uint32_t* result); |
| 714 error::Error DoEnableFeatureCHROMIUM(const char* feature); | 714 error::Error DoEnableFeatureCHROMIUM(const char* feature); |
| 715 error::Error DoMapBufferRange(GLenum target, | 715 error::Error DoMapBufferRange(GLenum target, |
| 716 GLintptr offset, | 716 GLintptr offset, |
| 717 GLsizeiptr size, | 717 GLsizeiptr size, |
| 718 GLbitfield access, | 718 GLbitfield access, |
| 719 void* ptr, | 719 void* ptr, |
| 720 int32_t data_shm_id, | 720 int32_t data_shm_id, |
| 721 uint32_t data_shm_offset); | 721 uint32_t data_shm_offset, |
| 722 uint32_t* result); |
| 722 error::Error DoUnmapBuffer(GLenum target); | 723 error::Error DoUnmapBuffer(GLenum target); |
| 723 error::Error DoResizeCHROMIUM(GLuint width, | 724 error::Error DoResizeCHROMIUM(GLuint width, |
| 724 GLuint height, | 725 GLuint height, |
| 725 GLfloat scale_factor, | 726 GLfloat scale_factor, |
| 726 GLboolean alpha); | 727 GLboolean alpha); |
| 727 error::Error DoGetRequestableExtensionsCHROMIUM(const char** extensions); | 728 error::Error DoGetRequestableExtensionsCHROMIUM(const char** extensions); |
| 728 error::Error DoRequestExtensionCHROMIUM(const char* extension); | 729 error::Error DoRequestExtensionCHROMIUM(const char* extension); |
| 729 error::Error DoGetProgramInfoCHROMIUM(GLuint program, | 730 error::Error DoGetProgramInfoCHROMIUM(GLuint program, |
| 730 std::vector<uint8_t>* data); | 731 std::vector<uint8_t>* data); |
| 731 error::Error DoGetUniformBlocksCHROMIUM(GLuint program, | 732 error::Error DoGetUniformBlocksCHROMIUM(GLuint program, |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 | 968 |
| 968 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture, | 969 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture, |
| 969 GLboolean promotion_hint, | 970 GLboolean promotion_hint, |
| 970 GLint display_x, | 971 GLint display_x, |
| 971 GLint display_y); | 972 GLint display_y); |
| 972 error::Error DoSetDrawRectangleCHROMIUM(GLint x, | 973 error::Error DoSetDrawRectangleCHROMIUM(GLint x, |
| 973 GLint y, | 974 GLint y, |
| 974 GLint width, | 975 GLint width, |
| 975 GLint height); | 976 GLint height); |
| 976 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable); | 977 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable); |
| OLD | NEW |