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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h

Issue 2781863002: Revert of Update the passthrough command decoder to use the new CHROMIUM_copy_texture. (Closed)
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
index b6412b6a68fb2e34de1250e093551f3aedbd4cc8..f4ba546d71723b094b987ccc1551ac2297d1f241 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h
@@ -740,20 +740,20 @@
GLint y,
GLint width,
GLint height);
-error::Error DoCopyTextureCHROMIUM(GLuint source_id,
+error::Error DoCopyTextureCHROMIUM(GLenum source_id,
GLint source_level,
GLenum dest_target,
- GLuint dest_id,
+ GLenum dest_id,
GLint dest_level,
GLint internalformat,
GLenum dest_type,
GLboolean unpack_flip_y,
GLboolean unpack_premultiply_alpha,
GLboolean unpack_unmultiply_alpha);
-error::Error DoCopySubTextureCHROMIUM(GLuint source_id,
+error::Error DoCopySubTextureCHROMIUM(GLenum source_id,
GLint source_level,
GLenum dest_target,
- GLuint dest_id,
+ GLenum dest_id,
GLint dest_level,
GLint xoffset,
GLint yoffset,
@@ -764,7 +764,7 @@
GLboolean unpack_flip_y,
GLboolean unpack_premultiply_alpha,
GLboolean unpack_unmultiply_alpha);
-error::Error DoCompressedCopyTextureCHROMIUM(GLuint source_id, GLuint dest_id);
+error::Error DoCompressedCopyTextureCHROMIUM(GLenum source_id, GLenum dest_id);
error::Error DoDrawArraysInstancedANGLE(GLenum mode,
GLint first,
GLsizei count,

Powered by Google App Engine
This is Rietveld 408576698