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

Unified Diff: dm/DMReplayTask.cpp

Issue 253733006: DM's rtree picture replay mode can ignore kSkippedTiled_Flag safely. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMReplayTask.cpp
diff --git a/dm/DMReplayTask.cpp b/dm/DMReplayTask.cpp
index cea978f138769e783a97a3d78cca92b7d71d673b..e4a9e4427be1dae2426d9807d7f616ddf565b4a2 100644
--- a/dm/DMReplayTask.cpp
+++ b/dm/DMReplayTask.cpp
@@ -44,7 +44,7 @@ bool ReplayTask::shouldSkip() const {
}
if (FLAGS_rtree && fUseRTree) {
- return (fGM->getFlags() & skiagm::GM::kSkipTiled_Flag) != 0;
+ return false;
}
if (FLAGS_replay && !fUseRTree) {
return false;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698