Lines Matching refs:dRect
332 SliceRect dRect; in stretchRect() local
348 dRect = *destRect; in stretchRect()
352 dRect.y0 = 0; in stretchRect()
353 dRect.x0 = 0; in stretchRect()
354 dRect.y1 = dHeight; in stretchRect()
355 dRect.x1 = dWidth; in stretchRect()
358 …bool scaling = (sRect.x1 - sRect.x0 != dRect.x1 - dRect.x0) || (sRect.y1 - sRect.y0 != dRect.y1 - … in stretchRect()
375 sw::byte *destBuffer = (sw::byte*)dest->lockInternal(0, 0, dRect.slice, LOCK_DISCARD, PUBLIC); in stretchRect()
415 …unsigned char *destBytes = (unsigned char*)dest->lockInternal(dRect.x0, dRect.y0, dRect.slice, LOC… in stretchRect()
419 unsigned int width = dRect.x1 - dRect.x0; in stretchRect()
420 unsigned int height = dRect.y1 - dRect.y0; in stretchRect()
445 blit(source, sRectF, dest, dRect, scaling && filter); in stretchRect()