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

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: pass SkString pointers to init 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') | no next file with comments »
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..619aa0ac9284cc45a8628ea2408cdb9c764b6562 100644
--- a/debugger/QT/SkDebuggerGUI.cpp
+++ b/debugger/QT/SkDebuggerGUI.cpp
@@ -319,10 +319,10 @@ void SkDebuggerGUI::run(SkTimedPicture* pict,
return;
}
- renderer->init(pict);
+ renderer->init(pict, NULL, NULL, 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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698