| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 GLboolean blue, | 68 GLboolean blue, |
| 69 GLboolean alpha); | 69 GLboolean alpha); |
| 70 error::Error DoCompileShader(GLuint shader); | 70 error::Error DoCompileShader(GLuint shader); |
| 71 error::Error DoCompressedTexImage2D(GLenum target, | 71 error::Error DoCompressedTexImage2D(GLenum target, |
| 72 GLint level, | 72 GLint level, |
| 73 GLenum internalformat, | 73 GLenum internalformat, |
| 74 GLsizei width, | 74 GLsizei width, |
| 75 GLsizei height, | 75 GLsizei height, |
| 76 GLint border, | 76 GLint border, |
| 77 GLsizei imageSize, | 77 GLsizei imageSize, |
| 78 GLsizei dataSize, |
| 78 const void* data); | 79 const void* data); |
| 79 error::Error DoCompressedTexSubImage2D(GLenum target, | 80 error::Error DoCompressedTexSubImage2D(GLenum target, |
| 80 GLint level, | 81 GLint level, |
| 81 GLint xoffset, | 82 GLint xoffset, |
| 82 GLint yoffset, | 83 GLint yoffset, |
| 83 GLsizei width, | 84 GLsizei width, |
| 84 GLsizei height, | 85 GLsizei height, |
| 85 GLenum format, | 86 GLenum format, |
| 86 GLsizei imageSize, | 87 GLsizei imageSize, |
| 88 GLsizei dataSize, |
| 87 const void* data); | 89 const void* data); |
| 88 error::Error DoCompressedTexImage3D(GLenum target, | 90 error::Error DoCompressedTexImage3D(GLenum target, |
| 89 GLint level, | 91 GLint level, |
| 90 GLenum internalformat, | 92 GLenum internalformat, |
| 91 GLsizei width, | 93 GLsizei width, |
| 92 GLsizei height, | 94 GLsizei height, |
| 93 GLsizei depth, | 95 GLsizei depth, |
| 94 GLint border, | 96 GLint border, |
| 95 GLsizei imageSize, | 97 GLsizei imageSize, |
| 98 GLsizei dataSize, |
| 96 const void* data); | 99 const void* data); |
| 97 error::Error DoCompressedTexSubImage3D(GLenum target, | 100 error::Error DoCompressedTexSubImage3D(GLenum target, |
| 98 GLint level, | 101 GLint level, |
| 99 GLint xoffset, | 102 GLint xoffset, |
| 100 GLint yoffset, | 103 GLint yoffset, |
| 101 GLint zoffset, | 104 GLint zoffset, |
| 102 GLsizei width, | 105 GLsizei width, |
| 103 GLsizei height, | 106 GLsizei height, |
| 104 GLsizei depth, | 107 GLsizei depth, |
| 105 GLenum format, | 108 GLenum format, |
| 106 GLsizei imageSize, | 109 GLsizei imageSize, |
| 110 GLsizei dataSize, |
| 107 const void* data); | 111 const void* data); |
| 108 error::Error DoCopyBufferSubData(GLenum readtarget, | 112 error::Error DoCopyBufferSubData(GLenum readtarget, |
| 109 GLenum writetarget, | 113 GLenum writetarget, |
| 110 GLintptr readoffset, | 114 GLintptr readoffset, |
| 111 GLintptr writeoffset, | 115 GLintptr writeoffset, |
| 112 GLsizeiptr size); | 116 GLsizeiptr size); |
| 113 error::Error DoCopyTexImage2D(GLenum target, | 117 error::Error DoCopyTexImage2D(GLenum target, |
| 114 GLint level, | 118 GLint level, |
| 115 GLenum internalformat, | 119 GLenum internalformat, |
| 116 GLint x, | 120 GLint x, |
| (...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 | 971 |
| 968 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture, | 972 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture, |
| 969 GLboolean promotion_hint, | 973 GLboolean promotion_hint, |
| 970 GLint display_x, | 974 GLint display_x, |
| 971 GLint display_y); | 975 GLint display_y); |
| 972 error::Error DoSetDrawRectangleCHROMIUM(GLint x, | 976 error::Error DoSetDrawRectangleCHROMIUM(GLint x, |
| 973 GLint y, | 977 GLint y, |
| 974 GLint width, | 978 GLint width, |
| 975 GLint height); | 979 GLint height); |
| 976 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable); | 980 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable); |
| OLD | NEW |