| 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'
|
|
|