OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "Test.h" | 8 #include "Test.h" |
9 #include "SkPath.h" | 9 #include "SkPath.h" |
10 #include "SkPaint.h" | 10 #include "SkPaint.h" |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 test_copy(reporter); | 227 test_copy(reporter); |
228 | 228 |
229 // regression tests | 229 // regression tests |
230 regression_cubic(reporter); | 230 regression_cubic(reporter); |
231 regression_measureText(reporter); | 231 regression_measureText(reporter); |
232 | 232 |
233 test_bicubic(reporter); | 233 test_bicubic(reporter); |
234 | 234 |
235 // need to implement charsToGlyphs on other backends (e.g. linux, win) | 235 // need to implement charsToGlyphs on other backends (e.g. linux, win) |
236 // before we can run this tests everywhere | 236 // before we can run this tests everywhere |
237 if (false) { | 237 if (true) { |
238 test_cmap(reporter); | 238 test_cmap(reporter); |
239 } | 239 } |
240 } | 240 } |
241 | 241 |
242 #include "TestClassDef.h" | 242 #include "TestClassDef.h" |
243 DEFINE_TESTCLASS("Paint", TestPaintClass, TestPaint) | 243 DEFINE_TESTCLASS("Paint", TestPaintClass, TestPaint) |
OLD | NEW |