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 SkImageGenerator_DEFINED | 8 #ifndef SkImageGenerator_DEFINED |
9 #define SkImageGenerator_DEFINED | 9 #define SkImageGenerator_DEFINED |
10 | 10 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
109 */ | 109 */ |
110 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, | 110 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, |
111 SkPMColor ctable[], int* ctableCount); | 111 SkPMColor ctable[], int* ctableCount); |
112 | 112 |
113 /** | 113 /** |
114 * Simplified version of getPixels() that asserts that info is NOT kIndex8_ SkColorType. | 114 * Simplified version of getPixels() that asserts that info is NOT kIndex8_ SkColorType. |
115 */ | 115 */ |
116 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes); | 116 bool getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes); |
117 #endif | 117 #endif |
118 | 118 |
119 /** | |
120 * If planes[0] is NULL, this imagegenerator should output the sizes and re turn true | |
121 * if it can efficiently return YUV planar data. If it cannot, it should re turn false. | |
122 * | |
123 * If planes[0] is not NULL, then it should copy the associated Y,U,V data into those planes | |
reed1
2014/07/10 17:15:15
I presume we mean, "If planes and rowBytes are not
sugoi1
2014/07/10 17:54:24
Done.
| |
124 * of memory supplied by the caller. It should validate that the sizes matc h what it expected. | |
125 * If the sizes do not match, it should return false. | |
126 */ | |
127 bool getYUV8Planes(SkISize sizes[3], void* planes[3], int rowBytes[3]); | |
reed1
2014/07/10 17:15:14
use size_t for rowBytes
sugoi1
2014/07/10 17:54:24
Done.
| |
128 | |
119 protected: | 129 protected: |
120 virtual SkData* onRefEncodedData(); | 130 virtual SkData* onRefEncodedData(); |
121 virtual bool onGetInfo(SkImageInfo* info); | 131 virtual bool onGetInfo(SkImageInfo* info); |
122 virtual bool onGetPixels(const SkImageInfo& info, | 132 virtual bool onGetPixels(const SkImageInfo& info, |
123 void* pixels, size_t rowBytes, | 133 void* pixels, size_t rowBytes, |
124 SkPMColor ctable[], int* ctableCount); | 134 SkPMColor ctable[], int* ctableCount); |
135 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], int rowBytes [3]); | |
125 }; | 136 }; |
126 | 137 |
127 #endif // SkImageGenerator_DEFINED | 138 #endif // SkImageGenerator_DEFINED |
OLD | NEW |