HomeSort by relevance Sort by last modified time
    Searched refs:outSubset (Results 1 - 4 of 4) sorted by null

  /external/skia/gm/
imagemakewithfilter.cpp 84 SkIRect outSubset;
87 &outSubset, &offset);
90 result = result->makeSubset(outSubset);
92 show_bounds(canvas, SkIRect::MakeXYWH(offset.x(), offset.y(), outSubset.width(),
93 outSubset.height()), clipBound);
  /external/skia/src/image/
SkImage.cpp 262 const SkIRect& clipBounds, SkIRect* outSubset,
264 if (!filter || !outSubset || !offset || !this->bounds().contains(subset)) {
284 *outSubset = SkIRect::MakeWH(result->width(), result->height());
285 if (!outSubset->intersect(clipBounds.makeOffset(-offset->x(), -offset->y()))) {
288 offset->fX += outSubset->x();
289 offset->fY += outSubset->y();
  /external/skia/tests/
ImageFilterTest.cpp     [all...]
  /external/skia/include/core/
SkImage.h 421 * SkImage, with an active subset (outSubset). This is usually used with texture-backed
431 * is returned, in which case the offset and outSubset parameters should be ignored by the
435 const SkIRect& clipBounds, SkIRect* outSubset,

Completed in 192 milliseconds