aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-06 16:27:38 +0000
committerGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-06 16:27:38 +0000
commit2fd0979c2d038d75233a4c3eb62f224d1fdfd90e (patch)
treecf860e218ab4a9a14372fead00ab21aa53a701d2 /tools
parent51263e8a7394d08b3ecd1d8c536af3b13ba38b3e (diff)
Turn --timeIndividualTiles back on in bench_pictures
Review URL: https://codereview.appspot.com/7299049 git-svn-id: http://skia.googlecode.com/svn/trunk@7620 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools')
-rw-r--r--tools/bench_pictures_cfg_helper.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/bench_pictures_cfg_helper.py b/tools/bench_pictures_cfg_helper.py
index 65d63a45b2..178ecd3d57 100644
--- a/tools/bench_pictures_cfg_helper.py
+++ b/tools/bench_pictures_cfg_helper.py
@@ -15,8 +15,7 @@ def Config(**kwargs):
def TileArgs(tile_x, tile_y):
return {'mode': ['tile', str(tile_x), str(tile_y)],
- # TODO(borenet): Turn this back on once the parser is working.
- #'timeIndividualTiles': True
+ 'timeIndividualTiles': True,
}
@@ -102,4 +101,4 @@ def PlaybackCreationGridConfig(tile_x, tile_y, **kwargs):
def TileGridConfig(tile_x, tile_y, **kwargs):
return GridConfig(tile_x, tile_y,
- **dict(TileArgs(tile_x, tile_y).items() + kwargs.items())) \ No newline at end of file
+ **dict(TileArgs(tile_x, tile_y).items() + kwargs.items()))