bench_pictures will now output the number of tiles for a tiled benchmark.

Review URL: https://codereview.appspot.com/6387044

git-svn-id: http://skia.googlecode.com/svn/trunk@4507 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
keyar@chromium.org 2012-07-10 15:13:21 +00:00
parent 52544c7cb6
commit 2724ae0bb1

View File

@ -141,7 +141,7 @@ static void run_tile_benchmark(SkPicture* picture, const SkBitmap& bitmap,
delete tiles[i].fBitmap; delete tiles[i].fBitmap;
} }
printf("tile%ix%i: cmsecs = %6.2f\n", options.fTileWidth, printf("%i_tiles_%ix%i: cmsecs = %6.2f\n", tiles.count(), options.fTileWidth,
options.fTileHeight, timer.fWall / options.fRepeats); options.fTileHeight, timer.fWall / options.fRepeats);
} }