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

Unified Diff: public/platform/WebGraphicsContext3D.h

Issue 1207483004: Pass flipY and premultiplyAlpha params to command buffer through func args. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | « 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: public/platform/WebGraphicsContext3D.h
diff --git a/public/platform/WebGraphicsContext3D.h b/public/platform/WebGraphicsContext3D.h
index 31e09b5c0805192263a17c27f7095d73a3475491..b8519fb0304a67814babfe0439ab775e243e1cd5 100644
--- a/public/platform/WebGraphicsContext3D.h
+++ b/public/platform/WebGraphicsContext3D.h
@@ -397,10 +397,12 @@ public:
// GL_CHROMIUM_copy_texture
virtual void copyTextureCHROMIUM(WGC3Denum target, WGC3Duint sourceId,
- WGC3Duint destId, WGC3Denum internalFormat, WGC3Denum destType) { }
+ WGC3Duint destId, WGC3Denum internalFormat, WGC3Denum destType,
+ WGC3Dboolean unpackFlipY, WGC3Dboolean unpackPremultiplyAlpha, WGC3Dboolean unpackUnmultiplyAlpha) { }
virtual void copySubTextureCHROMIUM(WGC3Denum target, WGC3Duint sourceId,
WGC3Duint destId, WGC3Dint xoffset, WGC3Dint yoffset, WGC3Dint x,
- WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height) { }
+ WGC3Dint y, WGC3Dsizei width, WGC3Dsizei height,
+ WGC3Dboolean unpackFlipY, WGC3Dboolean unpackPremultiplyAlpha, WGC3Dboolean unpackUnmultiplyAlpha) { }
// GL_CHROMIUM_shallow_flush
virtual void shallowFlushCHROMIUM() { }
« no previous file with comments | « Source/platform/graphics/gpu/DrawingBuffer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698