OLD | NEW |
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 Loading... |
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 |
OLD | NEW |