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

Unified Diff: cc/quads/picture_draw_quad.h

Issue 13863015: Add flag for drawing layers to screen with Ganesh (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review Created 7 years, 7 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: cc/quads/picture_draw_quad.h
diff --git a/cc/quads/picture_draw_quad.h b/cc/quads/picture_draw_quad.h
index 40e8487ba38d1fee543000e2ce87329c4b8f47de..9f49ffaf97513faea1f4f3d6447b5ea7bc4f4efc 100644
--- a/cc/quads/picture_draw_quad.h
+++ b/cc/quads/picture_draw_quad.h
@@ -30,6 +30,7 @@ class CC_EXPORT PictureDrawQuad : public ContentDrawQuadBase {
bool swizzle_contents,
gfx::Rect content_rect,
float contents_scale,
+ bool draw_direct_to_backbuffer,
scoped_refptr<PicturePileImpl> picture_pile);
void SetAll(const SharedQuadState* shared_quad_state,
@@ -42,10 +43,12 @@ class CC_EXPORT PictureDrawQuad : public ContentDrawQuadBase {
bool swizzle_contents,
gfx::Rect content_rect,
float contents_scale,
+ bool draw_direct_to_backbuffer,
scoped_refptr<PicturePileImpl> picture_pile);
gfx::Rect content_rect;
float contents_scale;
+ bool draw_direct_to_backbuffer;
scoped_refptr<PicturePileImpl> picture_pile;
virtual void IterateResources(const ResourceIteratorCallback& callback)

Powered by Google App Engine
This is Rietveld 408576698