Home
last modified time | relevance | path

Searched refs:resolveRect (Results 1 – 19 of 19) sorted by relevance

/external/skia/modules/svg/src/
DSkSVGRect.cpp29 const auto rect = lctx.resolveRect(fX, fY, fWidth, fHeight); in resolve()
78 return ctx.lengthContext().resolveRect(fX, fY, fWidth, fHeight); in onObjectBoundingBox()
DSkSVGImage.cpp82 const SkRect viewPort = lctx.resolveRect(fX, fY, fWidth, fHeight); in onRender()
99 return lctx.resolveRect(fX, fY, fWidth, fHeight); in onObjectBoundingBox()
DSkSVGSVG.cpp18 auto viewPortRect = ctx->lengthContext().resolveRect(x, y, fWidth, fHeight); in onPrepareToRender()
DSkSVGPattern.cpp94 const auto tile = ctx.lengthContext().resolveRect( in onAsPaint()
DSkSVGRenderContext.cpp75 SkRect SkSVGLengthContext::resolveRect(const SkSVGLength& x, const SkSVGLength& y, in resolveRect() function in SkSVGLengthContext
494 auto r = lctx->resolveRect(x, y, w, h); in resolveOBBRect()
/external/skqp/experimental/svg/model/
DSkSVGRenderContext.h38 SkRect resolveRect(const SkSVGLength& x, const SkSVGLength& y,
DSkSVGRect.cpp78 const SkRect rect = lctx.resolveRect(fX, fY, fWidth, fHeight); in resolve()
DSkSVGSVG.cpp16 auto viewPortRect = ctx->lengthContext().resolveRect(fX, fY, fWidth, fHeight); in onPrepareToRender()
DSkSVGPattern.cpp144 const auto tile = ctx.lengthContext().resolveRect( in onAsPaint()
DSkSVGRenderContext.cpp67 SkRect SkSVGLengthContext::resolveRect(const SkSVGLength& x, const SkSVGLength& y, in resolveRect() function in SkSVGLengthContext
/external/skia/modules/svg/include/
DSkSVGRenderContext.h41 SkRect resolveRect(const SkSVGLength& x, const SkSVGLength& y,
/external/skia/src/gpu/
DGrGpu.h207 void resolveRenderTarget(GrRenderTarget*, const SkIRect& resolveRect);
741 virtual void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) = 0;
DGrGpu.cpp561 void GrGpu::resolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in resolveRenderTarget() argument
564 this->onResolveRenderTarget(target, resolveRect); in resolveRenderTarget()
/external/skia/src/gpu/gl/
DGrGLGpu.h111 void resolveRenderFBOs(GrGLRenderTarget*, const SkIRect& resolveRect, ResolveDirection,
325 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
DGrGLGpu.cpp2310 void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument
2311 this->resolveRenderFBOs(static_cast<GrGLRenderTarget*>(target), resolveRect, in onResolveRenderTarget()
2315 void GrGLGpu::resolveRenderFBOs(GrGLRenderTarget* rt, const SkIRect& resolveRect, in resolveRenderFBOs() argument
2343 SkAssertResult(scissor.set(resolveRect)); in resolveRenderFBOs()
2356 l = resolveRect.x(); in resolveRenderFBOs()
2357 b = resolveRect.y(); in resolveRenderFBOs()
2358 r = resolveRect.x() + resolveRect.width(); in resolveRenderFBOs()
2359 t = resolveRect.y() + resolveRect.height(); in resolveRenderFBOs()
/external/skia/src/gpu/mtl/
DGrMtlGpu.h200 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
/external/skia/src/gpu/d3d/
DGrD3DGpu.cpp551 void GrD3DGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument
556 this->resolveTexture(target, resolveRect.fLeft, resolveRect.fTop, rt, resolveRect); in onResolveRenderTarget()
/external/skia/src/gpu/vk/
DGrVkGpu.h146 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
DGrVkGpu.cpp717 void GrVkGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument
728 this->resolveImage(target, rt, resolveRect, in onResolveRenderTarget()
729 SkIPoint::Make(resolveRect.x(), resolveRect.y())); in onResolveRenderTarget()