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

Unified Diff: ppapi/lib/gl/include/GLES2/gl2ext.h

Issue 1551143002: Remove the "target" argument from CopyTextureChromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error. Created 4 years, 12 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: ppapi/lib/gl/include/GLES2/gl2ext.h
diff --git a/ppapi/lib/gl/include/GLES2/gl2ext.h b/ppapi/lib/gl/include/GLES2/gl2ext.h
index d3dc0e5ca6a691d8a8c2b22487b7db9aa30bc7f8..130eea20a8aa602071275719698917337857fd54 100644
--- a/ppapi/lib/gl/include/GLES2/gl2ext.h
+++ b/ppapi/lib/gl/include/GLES2/gl2ext.h
@@ -1926,7 +1926,6 @@ typedef void (GL_APIENTRYP PFNGLTEXIMAGEIOSURFACE2DCHROMIUM) (GLenum target, GLs
#define glCopySubTextureCHROMIUM GLES2_GET_FUN(CopySubTextureCHROMIUM)
#if !defined(GLES2_USE_CPP_BINDINGS)
GL_APICALL void GL_APIENTRY glCopyTextureCHROMIUM(
- GLenum target,
GLenum source_id,
GLenum dest_id,
GLint internalformat,
@@ -1935,7 +1934,6 @@ GL_APICALL void GL_APIENTRY glCopyTextureCHROMIUM(
GLboolean unpack_premultiply_alpha,
GLboolean unpack_unmultiply_alpha);
GL_APICALL void GL_APIENTRY glCopySubTextureCHROMIUM(
- GLenum target,
GLenum source_id,
GLenum dest_id,
GLint xoffset,
@@ -1950,7 +1948,6 @@ GL_APICALL void GL_APIENTRY glCopySubTextureCHROMIUM(
#endif
#else
typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUM)(
- GLenum target,
GLenum source_id,
GLenum dest_id,
GLint internalformat,
@@ -1959,7 +1956,6 @@ typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUM)(
GLboolean unpack_premultiply_alpha,
GLboolean unpack_unmultiply_alpha);
typedef void(GL_APIENTRYP PFNGLCOPYSUBTEXTURECHROMIUM)(
- GLenum target,
GLenum source_id,
GLenum dest_id,
GLint xoffset,

Powered by Google App Engine
This is Rietveld 408576698