Lines Matching defs:srcRect
431 bool GrD3DGpu::onCopySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
465 this->copySurfaceAsResolve(dst, src, srcRect, dstPoint);
470 this->copySurfaceAsCopyTexture(dst, src, dstTexResource, srcTexResource, srcRect, dstPoint);
480 const SkIRect& srcRect, const SkIPoint& dstPoint) {
508 srcBox.left = srcRect.fLeft;
509 srcBox.top = srcRect.fTop;
510 srcBox.right = srcRect.fRight;
511 srcBox.bottom = srcRect.fBottom;
523 srcRect.width(), srcRect.height());
528 void GrD3DGpu::copySurfaceAsResolve(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
533 this->resolveTexture(dst, dstPoint.fX, dstPoint.fY, srcRT, srcRect);
535 srcRect.width(), srcRect.height());
545 D3D12_RECT srcRect = { srcIRect.fLeft, srcIRect.fTop, srcIRect.fRight, srcIRect.fBottom };
560 src->msaaTextureResource(), &srcRect);