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

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

Issue 2822513002: Let DoMapBufferRange write the result integer to signal a GL error. (Closed)
Patch Set: 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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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);
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