Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(799)

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h

Issue 2811693005: Handle pixel (un)pack buffers with non-zero offset. (Closed)
Patch Set: Address comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 GLboolean green, 67 GLboolean green,
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 image_size,
78 GLsizei data_size,
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 image_size,
88 GLsizei data_size,
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 image_size,
98 GLsizei data_size,
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 image_size,
110 GLsizei data_size,
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
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);
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698