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 #ifndef SkDiscardablePixelRef_DEFINED | 8 #ifndef SkDiscardablePixelRef_DEFINED |
9 #define SkDiscardablePixelRef_DEFINED | 9 #define SkDiscardablePixelRef_DEFINED |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 size_t rowBytes[3], | 59 size_t rowBytes[3], |
60 SkYUVColorSpace* colorSpace) override { | 60 SkYUVColorSpace* colorSpace) override { |
61 // If the image was already decoded with lockPixels(), favor not | 61 // If the image was already decoded with lockPixels(), favor not |
62 // re-decoding to YUV8 planes. | 62 // re-decoding to YUV8 planes. |
63 if (fDiscardableMemory) { | 63 if (fDiscardableMemory) { |
64 return false; | 64 return false; |
65 } | 65 } |
66 return fGenerator->getYUV8Planes(sizes, planes, rowBytes, colorSpace); | 66 return fGenerator->getYUV8Planes(sizes, planes, rowBytes, colorSpace); |
67 } | 67 } |
68 | 68 |
69 friend bool SkInstallDiscardablePixelRef(SkImageGenerator*, const SkIRect*,
SkBitmap*, | 69 friend bool SkDEPRECATED_InstallDiscardablePixelRef(SkImageGenerator*, const
SkIRect*, SkBitmap*, |
70 SkDiscardableMemory::Factory*); | 70 SkDiscardableMemory::Factory*); |
71 | 71 |
72 typedef SkPixelRef INHERITED; | 72 typedef SkPixelRef INHERITED; |
73 }; | 73 }; |
74 | 74 |
75 #endif // SkDiscardablePixelRef_DEFINED | 75 #endif // SkDiscardablePixelRef_DEFINED |
OLD | NEW |