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

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

Issue 2372753003: Remove obsolete references to threaded-compositing and impl-side-painting flags. (Closed)
Patch Set: Remove --enable-threaded-compositing flag as well. Created 4 years, 2 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
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 5
6 def CustomizeBrowserOptionsForSoftwareRasterization(options): 6 def CustomizeBrowserOptionsForSoftwareRasterization(options):
7 """Enables flags needed for forced software rasterization.""" 7 """Enables flags needed for forced software rasterization."""
8 options.AppendExtraBrowserArgs('--disable-gpu-rasterization') 8 options.AppendExtraBrowserArgs('--disable-gpu-rasterization')
9 9
10 10
11 def CustomizeBrowserOptionsForGpuRasterization(options): 11 def CustomizeBrowserOptionsForGpuRasterization(options):
12 """Enables flags needed for forced GPU rasterization using Ganesh.""" 12 """Enables flags needed for forced GPU rasterization using Ganesh."""
13 options.AppendExtraBrowserArgs('--enable-threaded-compositing')
14 options.AppendExtraBrowserArgs('--enable-impl-side-painting')
15 options.AppendExtraBrowserArgs('--force-gpu-rasterization') 13 options.AppendExtraBrowserArgs('--force-gpu-rasterization')
16 14
17 15
18 def CustomizeBrowserOptionsForSyncScrolling(options): 16 def CustomizeBrowserOptionsForSyncScrolling(options):
19 """Enables flags needed for synchronous (main thread) scrolling.""" 17 """Enables flags needed for synchronous (main thread) scrolling."""
20 options.AppendExtraBrowserArgs('--disable-threaded-scrolling') 18 options.AppendExtraBrowserArgs('--disable-threaded-scrolling')
21 19
22 def CustomizeBrowserOptionsForThreadTimes(options): 20 def CustomizeBrowserOptionsForThreadTimes(options):
23 """Disables options known to cause noise in thread times""" 21 """Disables options known to cause noise in thread times"""
24 # Remove once crbug.com/621128 is fixed. 22 # Remove once crbug.com/621128 is fixed.
25 options.AppendExtraBrowserArgs('--disable-top-sites') 23 options.AppendExtraBrowserArgs('--disable-top-sites')
OLDNEW
« no previous file with comments | « content/test/gpu/gpu_tests/gpu_rasterization.py ('k') | tools/perf/measurements/rasterize_and_record_micro.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698