Home
last modified time | relevance | path

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

/external/skia/modules/svg/src/
DSkSVGRect.cpp68 const auto rect = lctx.resolveRect(fX, fY, fWidth, fHeight); in resolve()
99 return ctx.lengthContext().resolveRect(fX, fY, fWidth, fHeight); in onTransformableObjectBoundingBox()
DSkSVGImage.cpp89 const SkRect viewPort = lctx.resolveRect(fX, fY, fWidth, fHeight); in onRender()
106 return lctx.resolveRect(fX, fY, fWidth, fHeight); in onTransformableObjectBoundingBox()
DSkSVGSVG.cpp38 auto viewPortRect = ctx->lengthContext().resolveRect(x, y, fWidth, fHeight); in onPrepareToRender()
DSkSVGPattern.cpp101 const auto tile = ctx.lengthContext().resolveRect( in onAsPaint()
DSkSVGRenderContext.cpp88 SkRect SkSVGLengthContext::resolveRect(const SkSVGLength& x, const SkSVGLength& y, in resolveRect() function in SkSVGLengthContext
522 auto r = lctx->resolveRect(x, y, w, h); in resolveOBBRect()
/external/skia/modules/svg/include/
DSkSVGRenderContext.h54 SkRect resolveRect(const SkSVGLength& x, const SkSVGLength& y,
/external/skia/src/gpu/ganesh/
DGrGpu.h230 void resolveRenderTarget(GrRenderTarget*, const SkIRect& resolveRect);
837 virtual void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) = 0;
DGrGpu.cpp660 void GrGpu::resolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in resolveRenderTarget() argument
663 this->onResolveRenderTarget(target, resolveRect); in resolveRenderTarget()
/external/skia/src/gpu/ganesh/gl/
DGrGLGpu.h174 void resolveRenderFBOs(GrGLRenderTarget*, const SkIRect& resolveRect, ResolveDirection,
432 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
DGrGLGpu.cpp2566 void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument
2572 this->resolveRenderFBOs(glRT, resolveRect, ResolveDirection::kMSAAToSingle); in onResolveRenderTarget()
2576 void GrGLGpu::resolveRenderFBOs(GrGLRenderTarget* rt, const SkIRect& resolveRect, in resolveRenderFBOs() argument
2590 SkASSERT(resolveRect == SkIRect::MakeSize(rt->dimensions())); in resolveRenderFBOs()
2595 SkAssertResult(scissor.set(resolveRect)); in resolveRenderFBOs()
2601 resolveRect == SkIRect::MakeSize(rt->dimensions())); in resolveRenderFBOs()
2602 int l = resolveRect.x(); in resolveRenderFBOs()
2603 int b = resolveRect.y(); in resolveRenderFBOs()
2604 int r = resolveRect.x() + resolveRect.width(); in resolveRenderFBOs()
2605 int t = resolveRect.y() + resolveRect.height(); in resolveRenderFBOs()
/external/skia/src/gpu/ganesh/mtl/
DGrMtlGpu.h223 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
/external/skia/src/gpu/ganesh/d3d/
DGrD3DGpu.cpp572 void GrD3DGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument
577 this->resolveTexture(target, resolveRect.fLeft, resolveRect.fTop, rt, resolveRect); in onResolveRenderTarget()
/external/skia/src/gpu/ganesh/vk/
DGrVkGpu.h196 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
DGrVkGpu.cpp792 void GrVkGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument
802 this->resolveImage(target, rt, resolveRect, in onResolveRenderTarget()
803 SkIPoint::Make(resolveRect.x(), resolveRect.y())); in onResolveRenderTarget()