Searched defs:fSubset (Results 1 - 9 of 9) sorted by relevance

/external/skia/bench/
H A DBitmapRegionDecoderBench.h42 const SkIRect fSubset; member in class:BitmapRegionDecoderBench
/external/skia/src/core/
H A DSkBitmapCache.h25 SkIRect fSubset; // always set to a valid rect (entire or subset) member in struct:SkBitmapCacheDesc
32 SkASSERT(fSubset.fLeft >= 0 && fSubset.fTop >= 0);
33 SkASSERT(fSubset.width() > 0 && fSubset.height() > 0);
H A DSkSpecialSurface.h36 int width() const { return fSubset.width(); }
37 int height() const { return fSubset.height(); }
89 const SkIRect& subset() const { return fSubset; }
93 const SkIRect fSubset; member in class:SkSpecialSurface
H A DSkSpecialImage.h53 int width() const { return fSubset.width(); }
54 int height() const { return fSubset.height(); }
55 const SkIRect& subset() const { return fSubset; }
155 const SkIRect fSubset; member in class:SkSpecialImage
H A DSkBitmapCache.cpp107 fDesc.fSubset.x(), fDesc.fSubset.y(), fDesc.fSubset.width(), fDesc.fSubset.height());
175 , fSubset(subset)
180 sizeof(fImageID) + sizeof(fColorMode) + sizeof(fSubset));
185 SkIRect fSubset; member in struct:__anon16931::MipMapKey
233 MipMapKey key(desc.fImageID, desc.fSubset, colorMode);
/external/skia/tests/
H A DSubsetPath.h47 int fSubset; member in class:SubsetPath
/external/skia/include/codec/
H A DSkAndroidCodec.h156 , fSubset(nullptr)
179 SkIRect* fSubset; member in struct:SkAndroidCodec::AndroidOptions
236 * using options->fSampleSize and options->fSubset. If NULL, the defaults (as specified above
H A DSkCodec.h249 , fSubset(nullptr)
263 * exact rectangular subset specified by fSubset.
273 const SkIRect* fSubset; member in struct:SkCodec::Options
/external/skia/src/pdf/
H A DSkBitmapKey.h15 SkIRect fSubset; member in struct:SkBitmapKey
18 return fID == rhs.fID && fSubset == rhs.fSubset;
31 fSubset = {0, 0, 0, 0};
37 fSubset = fImage->bounds();
39 SkASSERT(!fSubset.isEmpty());
41 fSubset = subset;
42 if (!fSubset.intersect(fImage->bounds())) {
44 fSubset = {0, 0, 0, 0};
56 SkISize dimensions() const { return fSubset
72 SkIRect fSubset; member in class:SkImageSubset
[all...]

Completed in 366 milliseconds