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

Unified Diff: third_party/WebKit/public/platform/WebGraphicsContext3D.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
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebGraphicsContext3D.h
diff --git a/third_party/WebKit/public/platform/WebGraphicsContext3D.h b/third_party/WebKit/public/platform/WebGraphicsContext3D.h
index a542360bad9b0d62b8389bef0969fbdc3c103cca..80cf755e26c0838e2127173b5fb49dd9a0520cc2 100644
--- a/third_party/WebKit/public/platform/WebGraphicsContext3D.h
+++ b/third_party/WebKit/public/platform/WebGraphicsContext3D.h
@@ -391,10 +391,10 @@ public:
virtual void bindUniformLocationCHROMIUM(WebGLId program, WGC3Dint location, const WGC3Dchar* uniform) { }
// GL_CHROMIUM_copy_texture
- virtual void copyTextureCHROMIUM(WGC3Denum target, WGC3Duint sourceId,
+ virtual void copyTextureCHROMIUM(WGC3Duint sourceId,
WGC3Duint destId, WGC3Denum internalFormat, WGC3Denum destType,
WGC3Dboolean unpackFlipY, WGC3Dboolean unpackPremultiplyAlpha, WGC3Dboolean unpackUnmultiplyAlpha) { }
- virtual void copySubTextureCHROMIUM(WGC3Denum target, WGC3Duint sourceId,
+ virtual void copySubTextureCHROMIUM(WGC3Duint sourceId,
WGC3Duint destId, WGC3Dint xoffset, WGC3Dint yoffset, WGC3Dint x,
WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height,
WGC3Dboolean unpackFlipY, WGC3Dboolean unpackPremultiplyAlpha, WGC3Dboolean unpackUnmultiplyAlpha) { }
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698