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

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: Stencil buffer support, --draw-layers-with-ganesh Created 7 years, 8 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 | « cc/quads/draw_quad_unittest.cc ('k') | cc/quads/picture_draw_quad.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/picture_draw_quad.h
diff --git a/cc/quads/picture_draw_quad.h b/cc/quads/picture_draw_quad.h
index 847c4f8a1791b3a506ef1ab3f52e7f06cb66d9d2..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)
@@ -57,6 +60,6 @@ class CC_EXPORT PictureDrawQuad : public ContentDrawQuadBase {
PictureDrawQuad();
};
-}
+} // namespace cc
#endif // CC_QUADS_PICTURE_DRAW_QUAD_H_
« no previous file with comments | « cc/quads/draw_quad_unittest.cc ('k') | cc/quads/picture_draw_quad.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698