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

Unified Diff: tools/rebaseline.py

Issue 15299005: Make rebaseline.py pull msaa images (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/rebaseline.py
diff --git a/tools/rebaseline.py b/tools/rebaseline.py
index 5c1c8e3dc8530ab1669bd219340ce23595263f33..56e6380b64dc904931e3fa8525fdc52bd48a8c6d 100755
--- a/tools/rebaseline.py
+++ b/tools/rebaseline.py
@@ -51,9 +51,9 @@ is_git_checkout = os.path.exists('.git') or os.path.exists(os.path.join('..', '.
for testname in sys.argv[1:]:
for pair in pairs:
if (pair[0] == 'base-shuttle-win7-intel-angle'):
- testtypes = [ 'angle' ]
+ testtypes = [ 'angle', 'anglemsaa16' ]
else:
- testtypes = [ '565', '8888', 'gpu', 'pdf', 'mesa' ]
+ testtypes = [ '565', '8888', 'gpu', 'pdf', 'mesa', 'msaa16', 'msaa4' ]
print pair[0] + ':'
for testtype in testtypes:
infilename = testname + '_' + testtype + '.png'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698