OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkBitmap.h" | 8 #include "SkBitmap.h" |
9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkColor.h" | 10 #include "SkColor.h" |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 | 230 |
231 static void test_imageDecodingTests(skiatest::Reporter* reporter) { | 231 static void test_imageDecodingTests(skiatest::Reporter* reporter) { |
232 test_unpremul(reporter); | 232 test_unpremul(reporter); |
233 #ifdef SK_DEBUG | 233 #ifdef SK_DEBUG |
234 test_stream_life(); | 234 test_stream_life(); |
235 test_row_proc_choice(); | 235 test_row_proc_choice(); |
236 #endif | 236 #endif |
237 } | 237 } |
238 | 238 |
239 #include "TestClassDef.h" | 239 #include "TestClassDef.h" |
240 DEFINE_TESTCLASS("ImageDecoding", ImageDecodingTestClass, | 240 DEFINE_TESTCLASS_SHORT(test_imageDecodingTests) |
241 test_imageDecodingTests) | |
OLD | NEW |