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

Unified Diff: ui/gl/gl_bindings_autogen_mock.cc

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
« no previous file with comments | « ui/gl/gl_bindings_autogen_mock.h ('k') | ui/gl/gl_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_bindings_autogen_mock.cc
diff --git a/ui/gl/gl_bindings_autogen_mock.cc b/ui/gl/gl_bindings_autogen_mock.cc
index ea0f41d44065ea17d41451da33ba3ccde3b7dc2a..07902d5bcf24fd3ee7b511a48773285218a890dc 100644
--- a/ui/gl/gl_bindings_autogen_mock.cc
+++ b/ui/gl/gl_bindings_autogen_mock.cc
@@ -522,10 +522,7 @@
void GL_BINDING_CALL MockGLInterface::Mock_glCopySubTextureCHROMIUM(
GLuint sourceId,
- GLint sourceLevel,
- GLenum destTarget,
GLuint destId,
- GLint destLevel,
GLint xoffset,
GLint yoffset,
GLint x,
@@ -537,9 +534,8 @@
GLboolean unpackUnmultiplyAlpha) {
MakeFunctionUnique("glCopySubTextureCHROMIUM");
interface_->CopySubTextureCHROMIUM(
- sourceId, sourceLevel, destTarget, destId, destLevel, xoffset, yoffset, x,
- y, width, height, unpackFlipY, unpackPremultiplyAlpha,
- unpackUnmultiplyAlpha);
+ sourceId, destId, xoffset, yoffset, x, y, width, height, unpackFlipY,
+ unpackPremultiplyAlpha, unpackUnmultiplyAlpha);
}
void GL_BINDING_CALL
@@ -585,19 +581,16 @@
void GL_BINDING_CALL
MockGLInterface::Mock_glCopyTextureCHROMIUM(GLuint sourceId,
- GLint sourceLevel,
- GLenum destTarget,
GLuint destId,
- GLint destLevel,
GLint internalFormat,
GLenum destType,
GLboolean unpackFlipY,
GLboolean unpackPremultiplyAlpha,
GLboolean unpackUnmultiplyAlpha) {
MakeFunctionUnique("glCopyTextureCHROMIUM");
- interface_->CopyTextureCHROMIUM(
- sourceId, sourceLevel, destTarget, destId, destLevel, internalFormat,
- destType, unpackFlipY, unpackPremultiplyAlpha, unpackUnmultiplyAlpha);
+ interface_->CopyTextureCHROMIUM(sourceId, destId, internalFormat, destType,
+ unpackFlipY, unpackPremultiplyAlpha,
+ unpackUnmultiplyAlpha);
}
void GL_BINDING_CALL MockGLInterface::Mock_glCoverFillPathInstancedNV(
« no previous file with comments | « ui/gl/gl_bindings_autogen_mock.h ('k') | ui/gl/gl_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698