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

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

Issue 2831733003: Fix blits from multisampled renderbuffers to alpha:false WebGL back buffer. (Closed)
Patch Set: Add PLATFORM_EXPORT to fix link failure on Windows. 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
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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
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);
799 error::Error DoReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId); 802 error::Error DoReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId);
800 error::Error DoTraceBeginCHROMIUM(const char* category_name, 803 error::Error DoTraceBeginCHROMIUM(const char* category_name,
801 const char* trace_name); 804 const char* trace_name);
802 error::Error DoTraceEndCHROMIUM(); 805 error::Error DoTraceEndCHROMIUM();
803 error::Error DoDiscardFramebufferEXT(GLenum target, 806 error::Error DoDiscardFramebufferEXT(GLenum target,
804 GLsizei count, 807 GLsizei count,
805 const volatile GLenum* attachments); 808 const volatile GLenum* attachments);
806 error::Error DoLoseContextCHROMIUM(GLenum current, GLenum other); 809 error::Error DoLoseContextCHROMIUM(GLenum current, GLenum other);
807 error::Error DoDescheduleUntilFinishedCHROMIUM(); 810 error::Error DoDescheduleUntilFinishedCHROMIUM();
808 error::Error DoInsertFenceSyncCHROMIUM(GLuint64 release_count); 811 error::Error DoInsertFenceSyncCHROMIUM(GLuint64 release_count);
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 975
973 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture, 976 error::Error DoOverlayPromotionHintCHROMIUM(GLuint texture,
974 GLboolean promotion_hint, 977 GLboolean promotion_hint,
975 GLint display_x, 978 GLint display_x,
976 GLint display_y); 979 GLint display_y);
977 error::Error DoSetDrawRectangleCHROMIUM(GLint x, 980 error::Error DoSetDrawRectangleCHROMIUM(GLint x,
978 GLint y, 981 GLint y,
979 GLint width, 982 GLint width,
980 GLint height); 983 GLint height);
981 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable); 984 error::Error DoSetEnableDCLayersCHROMIUM(GLboolean enable);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698