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

Unified Diff: ui/gl/gl_bindings_autogen_gl.h

Issue 2776753002: Update the passthrough command decoder to use the new CHROMIUM_copy_texture. (Closed)
Patch Set: Re-roll ANGLE 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
« no previous file with comments | « ui/gl/gl_bindings_api_autogen_gl.h ('k') | ui/gl/gl_bindings_autogen_gl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_bindings_autogen_gl.h
diff --git a/ui/gl/gl_bindings_autogen_gl.h b/ui/gl/gl_bindings_autogen_gl.h
index b260a82d3402503a07b84e3a4edee43b2558a083..f72be65375f005daf6373c5111d035bb7f521f68 100644
--- a/ui/gl/gl_bindings_autogen_gl.h
+++ b/ui/gl/gl_bindings_autogen_gl.h
@@ -190,7 +190,10 @@ typedef void(GL_BINDING_CALL* glCopyBufferSubDataProc)(GLenum readTarget,
GLsizeiptr size);
typedef void(GL_BINDING_CALL* glCopySubTextureCHROMIUMProc)(
GLuint sourceId,
+ GLint sourceLevel,
+ GLenum destTarget,
GLuint destId,
+ GLint destLevel,
GLint xoffset,
GLint yoffset,
GLint x,
@@ -227,7 +230,10 @@ typedef void(GL_BINDING_CALL* glCopyTexSubImage3DProc)(GLenum target,
GLsizei height);
typedef void(GL_BINDING_CALL* glCopyTextureCHROMIUMProc)(
GLuint sourceId,
+ GLint sourceLevel,
+ GLenum destTarget,
GLuint destId,
+ GLint destLevel,
GLint internalFormat,
GLenum destType,
GLboolean unpackFlipY,
@@ -2118,7 +2124,10 @@ class GL_EXPORT GLApi {
GLintptr writeOffset,
GLsizeiptr size) = 0;
virtual void glCopySubTextureCHROMIUMFn(GLuint sourceId,
+ GLint sourceLevel,
+ GLenum destTarget,
GLuint destId,
+ GLint destLevel,
GLint xoffset,
GLint yoffset,
GLint x,
@@ -2154,7 +2163,10 @@ class GL_EXPORT GLApi {
GLsizei width,
GLsizei height) = 0;
virtual void glCopyTextureCHROMIUMFn(GLuint sourceId,
+ GLint sourceLevel,
+ GLenum destTarget,
GLuint destId,
+ GLint destLevel,
GLint internalFormat,
GLenum destType,
GLboolean unpackFlipY,
« no previous file with comments | « ui/gl/gl_bindings_api_autogen_gl.h ('k') | ui/gl/gl_bindings_autogen_gl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698