Lines Matching refs:dstPoint

3317                                                          const SkIPoint& dstPoint,  in can_blit_framebuffer_for_copy_surface()  argument
3369 (dstPoint.fX != srcRect.fLeft || dstPoint.fY != srcRect.fTop)) { in can_blit_framebuffer_for_copy_surface()
3470 const SkIPoint& dstPoint) { in onCopySurface() argument
3480 if (this->copySurfaceAsDraw(dst, src, srcRect, dstPoint)) { in onCopySurface()
3486 this->copySurfaceAsCopyTexSubImage(dst, src, srcRect, dstPoint); in onCopySurface()
3490 if (can_blit_framebuffer_for_copy_surface(dst, src, srcRect, dstPoint, this)) { in onCopySurface()
3491 return this->copySurfaceAsBlitFramebuffer(dst, src, srcRect, dstPoint); in onCopySurface()
3495 if (this->copySurfaceAsDraw(dst, src, srcRect, dstPoint)) { in onCopySurface()
3945 const SkIPoint& dstPoint) { in copySurfaceAsDraw() argument
3967 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, w, h); in copySurfaceAsDraw()
3982 GrGLfloat dx0 = 2.f * dstPoint.fX / dw - 1.f; in copySurfaceAsDraw()
3983 GrGLfloat dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f; in copySurfaceAsDraw()
3984 GrGLfloat dy0 = 2.f * dstPoint.fY / dh - 1.f; in copySurfaceAsDraw()
3985 GrGLfloat dy1 = 2.f * (dstPoint.fY + h) / dh - 1.f; in copySurfaceAsDraw()
4035 const SkIPoint& dstPoint) { in copySurfaceAsCopyTexSubImage() argument
4055 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight); in copySurfaceAsCopyTexSubImage()
4057 dstY = dstPoint.fY; in copySurfaceAsCopyTexSubImage()
4060 dstPoint.fX, dstY, in copySurfaceAsCopyTexSubImage()
4064 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, in copySurfaceAsCopyTexSubImage()
4072 const SkIPoint& dstPoint) { in copySurfaceAsBlitFramebuffer() argument
4073 SkASSERT(can_blit_framebuffer_for_copy_surface(dst, src, srcRect, dstPoint, this)); in copySurfaceAsBlitFramebuffer()
4074 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, in copySurfaceAsBlitFramebuffer()