Home | History | Annotate | Download | only in codec

Lines Matching refs:subset

80     SkIRect* subset = options.fSubset;
81 if (!subset || subset->size() == this->codec()->dimensions()) {
90 // We are performing a subset decode.
98 // Calculate the scaled subset bounds.
99 int scaledSubsetX = subset->x() / sampleSize;
100 int scaledSubsetY = subset->y() / sampleSize;
179 // Check if there is a subset.
180 SkIRect subset;
187 // Update the subset to account for scaling done by this->codec().
200 subset.setXYWH(subsetX, 0, subsetWidth, nativeSize.height());
201 sampledOptions.fSubset = ⊂