| 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 "SkDocument.h" | 10 #include "SkDocument.h" |
| 11 #include "SkImageInfo.h" | 11 #include "SkImageInfo.h" |
| 12 #include "SkPixelRef.h" | 12 #include "SkPixelRef.h" |
| 13 #include "SkRefCnt.h" | 13 #include "SkRefCnt.h" |
| 14 #include "SkStream.h" | 14 #include "SkStream.h" |
| 15 | 15 |
| 16 #include "Test.h" | 16 #include "Test.h" |
| 17 | 17 |
| 18 #if SK_SUPPORT_PDF | |
| 19 | |
| 20 namespace { | 18 namespace { |
| 21 | 19 |
| 22 // SkPixelRef which fails to lock, as a lazy pixel ref might if its pixels | 20 // SkPixelRef which fails to lock, as a lazy pixel ref might if its pixels |
| 23 // cannot be generated. | 21 // cannot be generated. |
| 24 class InvalidPixelRef : public SkPixelRef { | 22 class InvalidPixelRef : public SkPixelRef { |
| 25 public: | 23 public: |
| 26 InvalidPixelRef(const SkImageInfo& info) : SkPixelRef(info) {} | 24 InvalidPixelRef(const SkImageInfo& info) : SkPixelRef(info) {} |
| 27 private: | 25 private: |
| 28 bool onNewLockPixels(LockRec*) override { return false; } | 26 bool onNewLockPixels(LockRec*) override { return false; } |
| 29 void onUnlockPixels() override { | 27 void onUnlockPixels() override { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 53 canvas->drawBitmap(SkBitmap(), 0, 0); | 51 canvas->drawBitmap(SkBitmap(), 0, 0); |
| 54 canvas->drawBitmap(make_invalid_bitmap(SkImageInfo()), 0, 0); | 52 canvas->drawBitmap(make_invalid_bitmap(SkImageInfo()), 0, 0); |
| 55 canvas->drawBitmap(make_invalid_bitmap(kN32_SkColorType), 0, 0); | 53 canvas->drawBitmap(make_invalid_bitmap(kN32_SkColorType), 0, 0); |
| 56 canvas->drawBitmap(make_invalid_bitmap(kIndex_8_SkColorType), 0, 0); | 54 canvas->drawBitmap(make_invalid_bitmap(kIndex_8_SkColorType), 0, 0); |
| 57 canvas->drawBitmap(make_invalid_bitmap(kARGB_4444_SkColorType), 0, 0); | 55 canvas->drawBitmap(make_invalid_bitmap(kARGB_4444_SkColorType), 0, 0); |
| 58 canvas->drawBitmap(make_invalid_bitmap(kRGB_565_SkColorType), 0, 0); | 56 canvas->drawBitmap(make_invalid_bitmap(kRGB_565_SkColorType), 0, 0); |
| 59 canvas->drawBitmap(make_invalid_bitmap(kAlpha_8_SkColorType), 0, 0); | 57 canvas->drawBitmap(make_invalid_bitmap(kAlpha_8_SkColorType), 0, 0); |
| 60 | 58 |
| 61 // This test passes if it does not crash. | 59 // This test passes if it does not crash. |
| 62 } | 60 } |
| 63 #endif // SK_SUPPORT_PDF | |
| OLD | NEW |