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

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

Issue 256043005: Add rasterize_and_record_micro.fast_path_gpu_rasterization.key_silk_cases benchmark (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use silk_flags in repaint.py Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from benchmarks import silk_flags
5 from measurements import repaint 6 from measurements import repaint
6 from telemetry import test 7 from telemetry import test
7 8
8 9
9 class RepaintKeyMobileSites(test.Test): 10 class RepaintKeyMobileSites(test.Test):
10 """Measures repaint performance on the key mobile sites. 11 """Measures repaint performance on the key mobile sites.
11 12
12 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 13 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
13 test = repaint.Repaint 14 test = repaint.Repaint
14 page_set = 'page_sets/key_mobile_sites.py' 15 page_set = 'page_sets/key_mobile_sites.py'
15 16
16 17
17 class RepaintGpuRasterizationKeyMobileSites(test.Test): 18 class RepaintGpuRasterizationKeyMobileSites(test.Test):
18 """Measures repaint performance on the key mobile sites with forced GPU 19 """Measures repaint performance on the key mobile sites with forced GPU
19 rasterization. 20 rasterization.
20 21
21 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 22 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
22 tag = 'gpu_rasterization' 23 tag = 'gpu_rasterization'
23 test = repaint.Repaint 24 test = repaint.Repaint
24 page_set = 'page_sets/key_mobile_sites.py' 25 page_set = 'page_sets/key_mobile_sites.py'
25 def CustomizeBrowserOptions(self, options): 26 def CustomizeBrowserOptions(self, options):
26 options.AppendExtraBrowserArgs('--enable-threaded-compositing') 27 silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
27 options.AppendExtraBrowserArgs('--force-compositing-mode')
28 options.AppendExtraBrowserArgs('--enable-impl-side-painting')
29 options.AppendExtraBrowserArgs('--force-gpu-rasterization')
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/rasterize_and_record_micro.py ('k') | tools/perf/benchmarks/silk_flags.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698