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

Side by Side Diff: tools/perf/benchmarks/scirra.py

Issue 258603004: Get rid of FromDict from robohornet_pro, scirra, spaceport, sunspider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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 unified diff | Download patch
« no previous file with comments | « tools/perf/benchmarks/robohornet_pro.py ('k') | tools/perf/benchmarks/spaceport.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Scirra WebGL and Canvas2D rendering benchmark suite. 5 """Scirra WebGL and Canvas2D rendering benchmark suite.
6 6
7 The Scirra WebGL performance test measures the number of 2D triangles 7 The Scirra WebGL performance test measures the number of 2D triangles
8 represented onscreen when the animation reaches the 30 FPS threshold. 8 represented onscreen when the animation reaches the 30 FPS threshold.
9 """ 9 """
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 """ % {'tickcount': tickcount, 'fps': fps, 'object_count': object_count} 47 """ % {'tickcount': tickcount, 'fps': fps, 'object_count': object_count}
48 tab.WaitForJavaScriptExpression(js_is_done, 300) 48 tab.WaitForJavaScriptExpression(js_is_done, 300)
49 total = int(tab.EvaluateJavaScript('window.sprites')) 49 total = int(tab.EvaluateJavaScript('window.sprites'))
50 results.Add('Count', 'count', total) 50 results.Add('Count', 'count', total)
51 51
52 52
53 class ScirraBenchmark(test.Test): 53 class ScirraBenchmark(test.Test):
54 """WebGL and Canvas2D rendering benchmark suite.""" 54 """WebGL and Canvas2D rendering benchmark suite."""
55 test = _ScirraMeasurement 55 test = _ScirraMeasurement
56 def CreatePageSet(self, options): 56 def CreatePageSet(self, options):
57 return page_set.PageSet.FromDict({ 57 ps = page_set.PageSet(
58 'archive_data_file': '../page_sets/data/scirra.json', 58 archive_data_file='../page_sets/data/scirra.json',
59 'make_javascript_deterministic': False, 59 make_javascript_deterministic=False,
60 'pages': [ 60 file_path=os.path.abspath(__file__))
61 { 'url': 'http://www.scirra.com/labs/renderperf3/'}, 61 for url in ('http://www.scirra.com/labs/renderperf3/',
62 { 'url': 'http://www.scirra.com/demos/c2/renderperfgl/'}, 62 'http://www.scirra.com/demos/c2/renderperfgl/',
63 { 'url': 'http://www.scirra.com/demos/c2/renderperf2d/'} 63 'http://www.scirra.com/demos/c2/renderperf2d/'):
64 ] 64 ps.AddPageWithDefaultRunNavigate(url)
65 }, os.path.abspath(__file__)) 65 return ps
66 66
67
68
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/robohornet_pro.py ('k') | tools/perf/benchmarks/spaceport.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698