Home | History | Annotate | Download | only in jni

Lines Matching full:width

190 void PictureSet::checkDimensions(int width, int height, SkRegion* inval)
192 if (mWidth == width && mHeight == height)
195 mWidth, mHeight, width, height);
196 if (mWidth == width && height > mHeight) { // only grew vertically
198 rect.set(0, mHeight, width, height - mHeight);
201 clear(); // if both width/height changed, clear the old cache
202 inval->setRect(0, 0, width, height);
204 mWidth = width;
277 if (maxElapsed < elapsed && (pathBounds.width() >= MIN_SPLITTABLE ||
367 if (bitmap.width() <= 1 || bitmap.height() <= 1)
369 DBG_SET_LOGD("abort {%d,%d}", bitmap.width(), bitmap.height());
570 int width = bounds.width();
574 while (height >= MIN_SPLITTABLE || width >= MIN_SPLITTABLE) {
575 if (height >= width) {
579 width >>= 1;
585 width = bounds.width();
592 int right = bounds.fLeft + width * ++indexX / across;
636 int pictWidth = pict->width();
638 if (pictWidth < bounds.width())
639 LOGD("%s pictWidth=%d < bounds.width()=%d", funct, pictWidth, bounds.width());
661 if (allBounds.width() != mWidth)
662 LOGD("%s allBounds.width()=%d != mWidth=%d", funct, allBounds.width(), mWidth);