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

Unified Diff: debugger/QT/SkDebuggerGUI.cpp

Issue 202983003: add --writeChecksumBasedFilenames flag to render_pictures (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix SkDebugger build Created 6 years, 9 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 | tools/CopyTilesRenderer.h » ('j') | tools/CopyTilesRenderer.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/QT/SkDebuggerGUI.cpp
diff --git a/debugger/QT/SkDebuggerGUI.cpp b/debugger/QT/SkDebuggerGUI.cpp
index b777aa1cfa8bdfe70e31c6750b882ab9f6cdec13..a4afc419bb97782e22c41a952e04b405f4ec0d2a 100644
--- a/debugger/QT/SkDebuggerGUI.cpp
+++ b/debugger/QT/SkDebuggerGUI.cpp
@@ -319,10 +319,10 @@ void SkDebuggerGUI::run(SkTimedPicture* pict,
return;
}
robertphillips1 2014/03/19 14:44:15 This seems a bit odd. We usually signal optional b
epoger 2014/03/19 15:20:29 Agreed. I think this means 1 or 2 changes, what d
robertphillips 2014/03/19 16:06:50 I think changing the parameters to be pointers but
epoger 2014/03/19 16:48:26 Done.
- renderer->init(pict);
+ renderer->init(pict, SkString(), SkString(), false);
renderer->setup();
- renderer->render(NULL);
+ renderer->render();
renderer->resetState(true); // flush, swapBuffers and Finish
// We throw this away the first batch of times to remove first time effects (such as paging in this program)
@@ -330,7 +330,7 @@ void SkDebuggerGUI::run(SkTimedPicture* pict,
for (int i = 0; i < repeats; ++i) {
renderer->setup();
- renderer->render(NULL);
+ renderer->render();
renderer->resetState(false); // flush & swapBuffers, but don't Finish
}
renderer->resetState(true); // flush, swapBuffers and Finish
« no previous file with comments | « no previous file | tools/CopyTilesRenderer.h » ('j') | tools/CopyTilesRenderer.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698