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

Unified Diff: gpu/command_buffer/client/gles2_interface_autogen.h

Issue 2639973002: Add target argument to Copy{Sub}TextureCHROMIUM entry point (Closed)
Patch Set: autogen code Created 3 years, 11 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/client/gles2_interface_autogen.h
diff --git a/gpu/command_buffer/client/gles2_interface_autogen.h b/gpu/command_buffer/client/gles2_interface_autogen.h
index 52e8ffba8bc45a55bb0beab4ba90cacccab44fc2..fa4f1e810fb6b9a29f731e16f3095ac063ce5e1c 100644
--- a/gpu/command_buffer/client/gles2_interface_autogen.h
+++ b/gpu/command_buffer/client/gles2_interface_autogen.h
@@ -688,7 +688,8 @@ virtual void PostSubBufferCHROMIUM(GLint x,
GLint y,
GLint width,
GLint height) = 0;
-virtual void CopyTextureCHROMIUM(GLenum source_id,
+virtual void CopyTextureCHROMIUM(GLenum target,
+ GLenum source_id,
GLint source_level,
GLenum dest_id,
GLint dest_level,
@@ -697,7 +698,8 @@ virtual void CopyTextureCHROMIUM(GLenum source_id,
GLboolean unpack_flip_y,
GLboolean unpack_premultiply_alpha,
GLboolean unpack_unmultiply_alpha) = 0;
-virtual void CopySubTextureCHROMIUM(GLenum source_id,
+virtual void CopySubTextureCHROMIUM(GLenum target,
+ GLenum source_id,
GLint source_level,
GLenum dest_id,
GLint dest_level,

Powered by Google App Engine
This is Rietveld 408576698