| 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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 const volatile GLbyte* mailbox); | 789 const volatile GLbyte* mailbox); |
| 790 error::Error DoConsumeTextureCHROMIUM(GLenum target, | 790 error::Error DoConsumeTextureCHROMIUM(GLenum target, |
| 791 const volatile GLbyte* mailbox); | 791 const volatile GLbyte* mailbox); |
| 792 error::Error DoCreateAndConsumeTextureINTERNAL(GLenum target, | 792 error::Error DoCreateAndConsumeTextureINTERNAL(GLenum target, |
| 793 GLuint texture_client_id, | 793 GLuint texture_client_id, |
| 794 const volatile GLbyte* mailbox); | 794 const volatile GLbyte* mailbox); |
| 795 error::Error DoBindUniformLocationCHROMIUM(GLuint program, | 795 error::Error DoBindUniformLocationCHROMIUM(GLuint program, |
| 796 GLint location, | 796 GLint location, |
| 797 const char* name); | 797 const char* name); |
| 798 error::Error DoBindTexImage2DCHROMIUM(GLenum target, GLint imageId); | 798 error::Error DoBindTexImage2DCHROMIUM(GLenum target, GLint imageId); |
| 799 error::Error DoBindTexImage2DWithInternalformatCHROMIUM(GLenum target, | |
| 800 GLenum internalformat, | |
| 801 GLint imageId); | |
| 802 error::Error DoReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId); | 799 error::Error DoReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId); |
| 803 error::Error DoTraceBeginCHROMIUM(const char* category_name, | 800 error::Error DoTraceBeginCHROMIUM(const char* category_name, |
| 804 const char* trace_name); | 801 const char* trace_name); |
| 805 error::Error DoTraceEndCHROMIUM(); | 802 error::Error DoTraceEndCHROMIUM(); |
| 806 error::Error DoDiscardFramebufferEXT(GLenum target, | 803 error::Error DoDiscardFramebufferEXT(GLenum target, |
| 807 GLsizei count, | 804 GLsizei count, |
| 808 const volatile GLenum* attachments); | 805 const volatile GLenum* attachments); |
| 809 error::Error DoLoseContextCHROMIUM(GLenum current, GLenum other); | 806 error::Error DoLoseContextCHROMIUM(GLenum current, GLenum other); |
| 810 error::Error DoDescheduleUntilFinishedCHROMIUM(); | 807 error::Error DoDescheduleUntilFinishedCHROMIUM(); |
| 811 error::Error DoInsertFenceSyncCHROMIUM(GLuint64 release_count); | 808 error::Error DoInsertFenceSyncCHROMIUM(GLuint64 release_count); |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 | 972 |
| 976 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture, | 973 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture, |
| 977 GLboolean promotion_hint, | 974 GLboolean promotion_hint, |
| 978 GLint display_x, | 975 GLint display_x, |
| 979 GLint display_y); | 976 GLint display_y); |
| 980 error::Error DoSetDrawRectangleCHROMIUM(GLint x, | 977 error::Error DoSetDrawRectangleCHROMIUM(GLint x, |
| 981 GLint y, | 978 GLint y, |
| 982 GLint width, | 979 GLint width, |
| 983 GLint height); | 980 GLint height); |
| 984 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable); | 981 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable); |
| OLD | NEW |