scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "gm.h" |
tfarina | bcbc178 | 2014-06-18 14:32:48 -0700 | [diff] [blame] | 9 | |
| 10 | #include "Resources.h" |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 11 | #include "SkCanvas.h" |
| 12 | #include "SkData.h" |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 13 | #include "SkDiscardableMemoryPool.h" |
| 14 | #include "SkDiscardablePixelRef.h" |
commit-bot@chromium.org | 2d970b5 | 2014-05-27 14:14:22 +0000 | [diff] [blame] | 15 | #include "SkImageGeneratorPriv.h" |
scroggo@google.com | ccd7afb | 2013-05-28 16:45:07 +0000 | [diff] [blame] | 16 | #include "SkOSFile.h" |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 17 | #include "SkStream.h" |
| 18 | |
| 19 | namespace skiagm { |
| 20 | |
| 21 | /** |
| 22 | * Draw a PNG created by SkBitmapFactory. |
| 23 | */ |
| 24 | class FactoryGM : public GM { |
| 25 | public: |
| 26 | FactoryGM() {} |
| 27 | |
| 28 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 29 | void onOnceBeforeDraw() override { |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 30 | // Copyright-free file from http://openclipart.org/detail/29213/paper-plane-by-ddoo |
tfarina | c846f4a | 2014-07-01 12:35:49 -0700 | [diff] [blame] | 31 | SkString pngFilename = GetResourcePath("plane.png"); |
| 32 | SkAutoDataUnref data(SkData::NewFromFileName(pngFilename.c_str())); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 33 | if (data.get()) { |
scroggo@google.com | f8d7d27 | 2013-02-22 21:38:35 +0000 | [diff] [blame] | 34 | // Create a cache which will boot the pixels out anytime the |
| 35 | // bitmap is unlocked. |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 36 | SkAutoTUnref<SkDiscardableMemoryPool> pool( |
commit-bot@chromium.org | cf2f008 | 2014-04-04 16:43:38 +0000 | [diff] [blame] | 37 | SkDiscardableMemoryPool::Create(1)); |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 38 | SkAssertResult(SkDEPRECATED_InstallDiscardablePixelRef( |
| 39 | SkImageGenerator::NewFromEncoded(data), |
| 40 | nullptr, &fBitmap, pool)); |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 41 | } |
| 42 | } |
| 43 | |
reed | 871872f | 2015-06-22 12:48:26 -0700 | [diff] [blame] | 44 | SkString onShortName() override { |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 45 | return SkString("factory"); |
| 46 | } |
| 47 | |
reed | 871872f | 2015-06-22 12:48:26 -0700 | [diff] [blame] | 48 | SkISize onISize() override { |
tfarina | f539318 | 2014-06-09 23:59:03 -0700 | [diff] [blame] | 49 | return SkISize::Make(640, 480); |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 50 | } |
| 51 | |
reed | 871872f | 2015-06-22 12:48:26 -0700 | [diff] [blame] | 52 | void onDraw(SkCanvas* canvas) override { |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 53 | canvas->drawBitmap(fBitmap, 0, 0); |
| 54 | } |
| 55 | |
scroggo@google.com | 9f686f3 | 2012-11-29 21:05:37 +0000 | [diff] [blame] | 56 | private: |
| 57 | SkBitmap fBitmap; |
| 58 | |
| 59 | typedef GM INHERITED; |
| 60 | }; |
| 61 | |
| 62 | ////////////////////////////////////////////////////////////////////////////// |
| 63 | |
| 64 | static GM* MyFactory(void*) { return new FactoryGM; } |
| 65 | static GMRegistry reg(MyFactory); |
| 66 | |
halcanary@google.com | 3d50ea1 | 2014-01-02 13:15:13 +0000 | [diff] [blame] | 67 | } // namespace skiagm |