Index: tools/bench_record.cpp |
diff --git a/tools/bench_record.cpp b/tools/bench_record.cpp |
index 45a143f824fe8d76c06e9f56277dcc89209496d6..fe28e342a4525035925ecb5961e289834aeaa5db 100644 |
--- a/tools/bench_record.cpp |
+++ b/tools/bench_record.cpp |
@@ -61,11 +61,11 @@ static SkBBHFactory* parse_FLAGS_bbh() { |
static void rerecord(const SkPicture& src, SkBBHFactory* bbhFactory) { |
SkPictureRecorder recorder; |
if (FLAGS_skr) { |
- src.draw(recorder.EXPERIMENTAL_beginRecording(src.cullRect().width(), |
+ src.playback(recorder.EXPERIMENTAL_beginRecording(src.cullRect().width(), |
src.cullRect().height(), |
bbhFactory)); |
} else { |
- src.draw(recorder. DEPRECATED_beginRecording(src.cullRect().width(), |
+ src.playback(recorder. DEPRECATED_beginRecording(src.cullRect().width(), |
src.cullRect().height(), |
bbhFactory)); |
} |