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

Unified Diff: cc/output/direct_renderer.cc

Issue 2465093002: cc: Add OutputSurface state snapshots.
Patch Set: nits Created 4 years, 1 month 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/output/direct_renderer.cc
diff --git a/cc/output/direct_renderer.cc b/cc/output/direct_renderer.cc
index cc7fd12c67002cf9dd367ff183eebf9d9792a2d6..54214ef07231770af5984bdbd35e38c00fe0fa0a 100644
--- a/cc/output/direct_renderer.cc
+++ b/cc/output/direct_renderer.cc
@@ -307,6 +307,12 @@ void DirectRenderer::DrawFrame(RenderPassList* render_passes_in_draw_order,
render_passes_in_draw_order->clear();
}
+void DirectRenderer::ReadbackSwappedOverlayTextures(
+ std::vector<SkBitmap>* bitmaps,
+ const base::Callback<void(bool)>& callback) {
+ callback.Run(false);
+}
+
gfx::Rect DirectRenderer::ComputeScissorRectForRenderPass(
const DrawingFrame* frame) {
if (frame->current_render_pass == frame->root_render_pass)

Powered by Google App Engine
This is Rietveld 408576698