| Index: tests/PaintTest.cpp
|
| diff --git a/tests/PaintTest.cpp b/tests/PaintTest.cpp
|
| index 5631632bdbdb6f0a21988e136ddc2d123b05a347..bcb33941533a2a19dc98eff44b9d5750232df7ee 100644
|
| --- a/tests/PaintTest.cpp
|
| +++ b/tests/PaintTest.cpp
|
| @@ -110,6 +110,7 @@ static void test_cmap(skiatest::Reporter* reporter) {
|
|
|
| // temparary api for bicubic, just be sure we can set/clear it
|
| static void test_bicubic(skiatest::Reporter* reporter) {
|
| +#if 0
|
| SkPaint p0;
|
| REPORTER_ASSERT(reporter, 0 == (p0.getFlags() & SkPaint::kBicubicFilterBitmap_Flag));
|
| p0.setFlags(p0.getFlags() | SkPaint::kBicubicFilterBitmap_Flag);
|
| @@ -120,6 +121,7 @@ static void test_bicubic(skiatest::Reporter* reporter) {
|
| REPORTER_ASSERT(reporter, 0 == (p0.getFlags() & SkPaint::kBicubicFilterBitmap_Flag));
|
| p0 = p1;
|
| p0.setFlags(p0.getFlags() | SkPaint::kBicubicFilterBitmap_Flag);
|
| +#endif
|
| }
|
|
|
| static void test_copy(skiatest::Reporter* reporter) {
|
|
|