Chromium Code Reviews| Index: tools/bench_record.cpp |
| diff --git a/tools/bench_record.cpp b/tools/bench_record.cpp |
| index cea3f0b6267ac34fcb4cfab0c55559bae11e0bcb..8765cc88d2764b93b440b83acffbbac474338a97 100644 |
| --- a/tools/bench_record.cpp |
| +++ b/tools/bench_record.cpp |
| @@ -12,6 +12,7 @@ |
| #include "SkPicture.h" |
| #include "SkStream.h" |
| #include "SkString.h" |
| +#include "SkTileGridPicture.h" |
| #include "SkTime.h" |
| __SK_FORCE_IMAGE_DECODER_LINKING; |
| @@ -25,6 +26,7 @@ DEFINE_int32(loops, 900, "Number of times to re-record each SKP."); |
| DEFINE_int32(flags, SkPicture::kUsePathBoundsForClip_RecordingFlag, "RecordingFlags to use."); |
| DEFINE_bool(endRecording, true, "If false, don't time SkPicture::endRecording()"); |
| DEFINE_int32(nullSize, 1000, "Pretend dimension of null source picture."); |
| +DEFINE_int32(tile_grid_size, 0, "Set the tile grid size, if non zero switches to tile grid picture and enables kOptimizeForClippedPlayback_RecordingFlag."); |
|
Sami
2014/02/28 17:02:35
Can we make this 512/256/whatever by default to ma
mtklein
2014/02/28 17:27:38
tileGridSize in Skia.
iancottrell
2014/02/28 18:50:46
Done.
|
| static void bench_record(SkPicture* src, const char* name) { |
| const SkMSec start = SkTime::GetMSecs(); |
| @@ -32,10 +34,21 @@ static void bench_record(SkPicture* src, const char* name) { |
| const int height = src ? src->height() : FLAGS_nullSize; |
| for (int i = 0; i < FLAGS_loops; i++) { |
| - SkPicture dst; |
| - SkCanvas* canvas = dst.beginRecording(width, height, FLAGS_flags); |
| + SkAutoTUnref<SkPicture> dst; |
| + int recording_flags = FLAGS_flags; |
|
mtklein
2014/02/28 17:27:38
recordingFlags
iancottrell
2014/02/28 18:50:46
Done.
|
| + if (FLAGS_tile_grid_size > 0) { |
| + SkTileGridPicture::TileGridInfo info; |
| + info.fTileInterval.set(FLAGS_tile_grid_size, FLAGS_tile_grid_size); |
| + info.fMargin.setEmpty(); |
| + info.fOffset.setZero(); |
| + dst.reset(SkNEW_ARGS(SkTileGridPicture, (width, height, info))); |
| + recording_flags |= SkPicture::kOptimizeForClippedPlayback_RecordingFlag; |
| + } else { |
| + dst.reset(SkNEW(SkPicture)); |
| + } |
| + SkCanvas* canvas = dst->beginRecording(width, height, recording_flags); |
| if (src) src->draw(canvas); |
| - if (FLAGS_endRecording) dst.endRecording(); |
| + if (FLAGS_endRecording) dst->endRecording(); |
| } |
| const SkMSec elapsed = SkTime::GetMSecs() - start; |