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

Unified Diff: tools/perf/benchmarks/smoothness.py

Issue 135223002: telemetry: add smoothness.*.key_silk_cases benchmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 11 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 | « content/renderer/gpu/render_widget_compositor.cc ('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 c66573774adc33ebeb4854d694569b8bc147a7d1..352ac3effb07d3c564d7a53c8bbecb81b711386b 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -34,3 +34,30 @@ class SmoothnessKeyMobileSites(test.Test):
class SmoothnessToughAnimationCases(test.Test):
test = smoothness.Smoothness
page_set = 'page_sets/tough_animation_cases.json'
+
+
+class SmoothnessThreadedRasterizationKeySilkCases(test.Test):
+ """Measures rendering statistics for the key silk cases without GPU
+ rasterization
+ """
+ tag = 'disable_gpu_rasterization'
+ test = smoothness.Smoothness
+ page_set = 'page_sets/key_silk_cases.json'
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs('--enable-threaded-compositing')
+ options.AppendExtraBrowserArgs('--force-compositing-mode')
+ options.AppendExtraBrowserArgs('--enable-impl-side-painting')
+ options.AppendExtraBrowserArgs('--disable-gpu-rasterization')
+
+
+class SmoothnessGpuRasterizationKeySilkCases(test.Test):
+ """Measures rendering statistics for the key silk cases with GPU rasterization
+ """
+ tag = 'enable_gpu_rasterization'
+ test = smoothness.Smoothness
+ page_set = 'page_sets/key_silk_cases.json'
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs('--enable-threaded-compositing')
+ options.AppendExtraBrowserArgs('--force-compositing-mode')
+ options.AppendExtraBrowserArgs('--enable-impl-side-painting')
+ options.AppendExtraBrowserArgs('--enable-gpu-rasterization')
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698