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

Unified Diff: tools/dm_flags.py

Issue 1099943002: Skip msaa4 on Tegra 2 and 3. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 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/dm_flags.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dm_flags.py
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 96cdaafd274d20fe608d433f96c0ae9f8ac0b0f4..1ae7c80f067995b247af1fd02395b3f4e8d6d92f 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -38,9 +38,11 @@ def get_args(bot):
configs.append('nvprmsaa16')
# The S4 crashes and the NP produces a long error stream when we run with
- # MSAA.
+ # MSAA. The Tegra2 and Tegra3 just don't support it.
if ('GalaxyS4' not in bot and
- 'NexusPlayer' not in bot):
+ 'NexusPlayer' not in bot and
+ 'Tegra2' not in bot and
+ 'Tegra3' not in bot):
if 'Android' in bot:
configs.append('msaa4')
else:
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698