OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "SkCanvas.h" | 5 #include "SkCanvas.h" |
6 #include "SkFlattenableSerialization.h" | 6 #include "SkFlattenableSerialization.h" |
7 #include "SkImageFilter.h" | 7 #include "SkImageFilter.h" |
8 #include "SkOSFile.h" | 8 #include "SkOSFile.h" |
9 #include "SkString.h" | 9 #include "SkString.h" |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 SkCanvas canvas(bitmap); | 72 SkCanvas canvas(bitmap); |
73 canvas.clear(0x00000000); | 73 canvas.clear(0x00000000); |
74 for (int i = 1; i < argc; i++) | 74 for (int i = 1; i < argc; i++) |
75 if (!read_and_run_test_case(argv[i], bitmap, &canvas)) | 75 if (!read_and_run_test_case(argv[i], bitmap, &canvas)) |
76 ret = 2; | 76 ret = 2; |
77 // Cluster-Fuzz likes "#EOF" as the last line of output to help distinguish | 77 // Cluster-Fuzz likes "#EOF" as the last line of output to help distinguish |
78 // successful runs from crashes. | 78 // successful runs from crashes. |
79 SkDebugf("#EOF\n"); | 79 SkDebugf("#EOF\n"); |
80 return ret; | 80 return ret; |
81 } | 81 } |
82 | |
OLD | NEW |