/external/skqp/src/android/ |
D | SkBitmapRegionCodec.cpp | 19 const SkIRect& desiredSubset, int sampleSize, SkColorType dstColorType, in decodeRegion() argument 38 SkIRect subset = desiredSubset; in decodeRegion() 65 const int extraX = SkTMax(0, desiredSubset.width() - outX - subset.width()); in decodeRegion() 66 const int extraY = SkTMax(0, desiredSubset.height() - outY - subset.height()); in decodeRegion()
|
D | SkBitmapRegionCodec.h | 27 const SkIRect& desiredSubset, int sampleSize,
|
/external/skia/client_utils/android/ |
D | BitmapRegionDecoder.cpp | 49 const SkIRect& desiredSubset, int sampleSize, SkColorType dstColorType, in decodeRegion() argument 68 SkIRect subset = desiredSubset; in decodeRegion() 95 const int extraX = std::max(0, desiredSubset.width() - outX - subset.width()); in decodeRegion() 96 const int extraY = std::max(0, desiredSubset.height() - outY - subset.height()); in decodeRegion()
|
D | BitmapRegionDecoder.h | 24 const SkIRect& desiredSubset, int sampleSize,
|
/external/skia/src/codec/ |
D | SkAndroidCodecAdapter.cpp | 20 bool SkAndroidCodecAdapter::onGetSupportedSubset(SkIRect* desiredSubset) const { in onGetSupportedSubset() 21 return this->codec()->getValidSubset(desiredSubset); in onGetSupportedSubset()
|
D | SkWebpCodec.cpp | 198 bool SkWebpCodec::onGetValidSubset(SkIRect* desiredSubset) const { in onGetValidSubset() 199 if (!desiredSubset) { in onGetValidSubset() 203 if (!this->bounds().contains(*desiredSubset)) { in onGetValidSubset() 210 desiredSubset->fLeft = (desiredSubset->fLeft >> 1) << 1; in onGetValidSubset() 211 desiredSubset->fTop = (desiredSubset->fTop >> 1) << 1; in onGetValidSubset()
|
D | SkAndroidCodec.cpp | 294 bool SkAndroidCodec::getSupportedSubset(SkIRect* desiredSubset) const { in getSupportedSubset() 295 if (!desiredSubset || !is_valid_subset(*desiredSubset, fCodec->dimensions())) { in getSupportedSubset() 299 return this->onGetSupportedSubset(desiredSubset); in getSupportedSubset()
|
D | SkAndroidCodecAdapter.h | 28 bool onGetSupportedSubset(SkIRect* desiredSubset) const override;
|
D | SkSampledCodec.h | 27 bool onGetSupportedSubset(SkIRect* desiredSubset) const override { return true; } in onGetSupportedSubset() argument
|
/external/skqp/src/codec/ |
D | SkAndroidCodecAdapter.cpp | 20 bool SkAndroidCodecAdapter::onGetSupportedSubset(SkIRect* desiredSubset) const { in onGetSupportedSubset() 21 return this->codec()->getValidSubset(desiredSubset); in onGetSupportedSubset()
|
D | SkWebpCodec.cpp | 214 bool SkWebpCodec::onGetValidSubset(SkIRect* desiredSubset) const { in onGetValidSubset() 215 if (!desiredSubset) { in onGetValidSubset() 219 if (!this->bounds().contains(*desiredSubset)) { in onGetValidSubset() 226 desiredSubset->fLeft = (desiredSubset->fLeft >> 1) << 1; in onGetValidSubset() 227 desiredSubset->fTop = (desiredSubset->fTop >> 1) << 1; in onGetValidSubset()
|
D | SkAndroidCodec.cpp | 312 bool SkAndroidCodec::getSupportedSubset(SkIRect* desiredSubset) const { in getSupportedSubset() 313 if (!desiredSubset || !is_valid_subset(*desiredSubset, fInfo.dimensions())) { in getSupportedSubset() 317 return this->onGetSupportedSubset(desiredSubset); in getSupportedSubset()
|
D | SkAndroidCodecAdapter.h | 28 bool onGetSupportedSubset(SkIRect* desiredSubset) const override;
|
D | SkSampledCodec.h | 27 bool onGetSupportedSubset(SkIRect* desiredSubset) const override { return true; } in onGetSupportedSubset() argument
|
/external/skia/include/codec/ |
D | SkAndroidCodec.h | 164 bool getSupportedSubset(SkIRect* desiredSubset) const; 254 virtual bool onGetSupportedSubset(SkIRect* desiredSubset) const = 0;
|
D | SkCodec.h | 256 bool getValidSubset(SkIRect* desiredSubset) const { in getValidSubset() argument 257 return this->onGetValidSubset(desiredSubset); in getValidSubset()
|
/external/skqp/include/codec/ |
D | SkAndroidCodec.h | 167 bool getSupportedSubset(SkIRect* desiredSubset) const; 277 virtual bool onGetSupportedSubset(SkIRect* desiredSubset) const = 0;
|
D | SkCodec.h | 224 bool getValidSubset(SkIRect* desiredSubset) const { in getValidSubset() argument 225 return this->onGetValidSubset(desiredSubset); in getValidSubset()
|
/external/skqp/include/android/ |
D | SkBitmapRegionDecoder.h | 63 const SkIRect& desiredSubset, int sampleSize,
|