| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "gm.h" | 8 #include "gm.h" |
| 9 | 9 |
| 10 #include "Resources.h" | 10 #include "Resources.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 */ | 25 */ |
| 26 class FactoryGM : public GM { | 26 class FactoryGM : public GM { |
| 27 public: | 27 public: |
| 28 FactoryGM() {} | 28 FactoryGM() {} |
| 29 | 29 |
| 30 protected: | 30 protected: |
| 31 virtual void onOnceBeforeDraw() SK_OVERRIDE { | 31 virtual void onOnceBeforeDraw() SK_OVERRIDE { |
| 32 // Copyright-free file from http://openclipart.org/detail/29213/paper-pl
ane-by-ddoo | 32 // Copyright-free file from http://openclipart.org/detail/29213/paper-pl
ane-by-ddoo |
| 33 SkString pngFilename = GetResourcePath("plane.png"); | 33 SkString pngFilename = GetResourcePath("plane.png"); |
| 34 SkAutoDataUnref data(SkData::NewFromFileName(pngFilename.c_str())); | 34 SkAutoDataUnref data(SkData::NewFromFileName(pngFilename.c_str())); |
| 35 if (NULL != data.get()) { | 35 if (data.get()) { |
| 36 // Create a cache which will boot the pixels out anytime the | 36 // Create a cache which will boot the pixels out anytime the |
| 37 // bitmap is unlocked. | 37 // bitmap is unlocked. |
| 38 SkAutoTUnref<SkDiscardableMemoryPool> pool( | 38 SkAutoTUnref<SkDiscardableMemoryPool> pool( |
| 39 SkDiscardableMemoryPool::Create(1)); | 39 SkDiscardableMemoryPool::Create(1)); |
| 40 SkAssertResult(SkInstallDiscardablePixelRef( | 40 SkAssertResult(SkInstallDiscardablePixelRef( |
| 41 SkDecodingImageGenerator::Create( | 41 SkDecodingImageGenerator::Create( |
| 42 data, SkDecodingImageGenerator::Options()), | 42 data, SkDecodingImageGenerator::Options()), |
| 43 &fBitmap, pool)); | 43 &fBitmap, pool)); |
| 44 } | 44 } |
| 45 } | 45 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 66 | 66 |
| 67 typedef GM INHERITED; | 67 typedef GM INHERITED; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 ////////////////////////////////////////////////////////////////////////////// | 70 ////////////////////////////////////////////////////////////////////////////// |
| 71 | 71 |
| 72 static GM* MyFactory(void*) { return new FactoryGM; } | 72 static GM* MyFactory(void*) { return new FactoryGM; } |
| 73 static GMRegistry reg(MyFactory); | 73 static GMRegistry reg(MyFactory); |
| 74 | 74 |
| 75 } // namespace skiagm | 75 } // namespace skiagm |
| OLD | NEW |