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

Unified Diff: tools/perf/benchmarks/smoothness.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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/benchmarks/silk_flags.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/smoothness.py
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
index f0e2ed760869fe6f5a0612f08dedfc23f2bb95ef..36c56fce27dc6c16c88b503fbbfd68ffb18ed0ee 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -71,10 +71,7 @@ class SmoothnessGpuRasterizationTop25(test.Test):
test = smoothness.Smoothness
page_set = 'page_sets/top_25.py'
def CustomizeBrowserOptions(self, options):
- options.AppendExtraBrowserArgs('--enable-threaded-compositing')
- options.AppendExtraBrowserArgs('--force-compositing-mode')
- options.AppendExtraBrowserArgs('--enable-impl-side-painting')
- options.AppendExtraBrowserArgs('--force-gpu-rasterization')
+ silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
class SmoothnessGpuRasterizationKeyMobileSites(test.Test):
@@ -85,10 +82,7 @@ class SmoothnessGpuRasterizationKeyMobileSites(test.Test):
test = smoothness.Smoothness
page_set = 'page_sets/key_mobile_sites.py'
def CustomizeBrowserOptions(self, options):
- options.AppendExtraBrowserArgs('--enable-threaded-compositing')
- options.AppendExtraBrowserArgs('--force-compositing-mode')
- options.AppendExtraBrowserArgs('--enable-impl-side-painting')
- options.AppendExtraBrowserArgs('--force-gpu-rasterization')
+ silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
class SmoothnessGpuRasterizationKeySilkCases(test.Test):
@@ -98,10 +92,7 @@ class SmoothnessGpuRasterizationKeySilkCases(test.Test):
test = smoothness.Smoothness
page_set = 'page_sets/key_silk_cases.py'
def CustomizeBrowserOptions(self, options):
- options.AppendExtraBrowserArgs('--enable-threaded-compositing')
- options.AppendExtraBrowserArgs('--force-compositing-mode')
- options.AppendExtraBrowserArgs('--enable-impl-side-painting')
- options.AppendExtraBrowserArgs('--force-gpu-rasterization')
+ silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
class SmoothnessFastPathGpuRasterizationKeySilkCases(
« no previous file with comments | « tools/perf/benchmarks/silk_flags.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698