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

Unified Diff: gpu/GLES2/gl2extchromium.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/GLES2/gl2extchromium.h
diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
index 30924332ead78a75267cf0223215225b9a1944c4..a597327597303a88fa23f33f90b33f8ee53dbaa7 100644
--- a/gpu/GLES2/gl2extchromium.h
+++ b/gpu/GLES2/gl2extchromium.h
@@ -363,7 +363,8 @@ typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERCHROMIUMPROC) (GLint srcX0, GLint
#ifdef GL_GLEXT_PROTOTYPES
GL_APICALL void GL_APIENTRY
-glCopyTextureCHROMIUM(GLenum source_id,
+glCopyTextureCHROMIUM(GLenum target,
+ GLenum source_id,
GLint source_level,
GLenum dest_id,
GLint dest_level,
@@ -374,7 +375,8 @@ glCopyTextureCHROMIUM(GLenum source_id,
GLboolean unpack_unmultiply_alpha);
GL_APICALL void GL_APIENTRY
-glCopySubTextureCHROMIUM(GLenum source_id,
+glCopySubTextureCHROMIUM(GLenum target,
+ GLenum source_id,
GLint source_level,
GLenum dest_id,
GLint dest_level,
@@ -389,6 +391,7 @@ glCopySubTextureCHROMIUM(GLenum source_id,
GLboolean unpack_unmultiply_alpha);
#endif
typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUMPROC)(
+ GLenum target,
GLenum source_id,
GLint source_level,
GLenum dest_id,
@@ -400,6 +403,7 @@ typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUMPROC)(
GLboolean unpack_unmultiply_alpha);
typedef void(GL_APIENTRYP PFNGLCOPYSUBTEXTURECHROMIUMPROC)(
+ GLenum target,
GLenum source_id,
GLint source_level,
GLenum dest_id,

Powered by Google App Engine
This is Rietveld 408576698