/third_party/skia/modules/svg/src/ |
H A D | SkSVGRect.cpp | 29 const auto rect = lctx.resolveRect(fX, fY, fWidth, fHeight); in resolve() 78 return ctx.lengthContext().resolveRect(fX, fY, fWidth, fHeight); in onObjectBoundingBox()
|
H A D | SkSVGImage.cpp | 82 const SkRect viewPort = lctx.resolveRect(fX, fY, fWidth, fHeight); in onRender() 99 return lctx.resolveRect(fX, fY, fWidth, fHeight); in onObjectBoundingBox()
|
H A D | SkSVGPattern.cpp | 94 const auto tile = ctx.lengthContext().resolveRect( in onAsPaint()
|
H A D | SkSVGRenderContext.cpp | 108 SkRect SkSVGLengthContext::resolveRect(const SkSVGLength& x, const SkSVGLength& y, in resolveRect() function in SkSVGLengthContext 527 auto r = lctx->resolveRect(x, y, w, h); in resolveOBBRect()
|
/third_party/skia/modules/svg/include/ |
H A D | SkSVGRenderContext.h | 44 SkRect resolveRect(const SkSVGLength& x, const SkSVGLength& y,
|
/third_party/skia/src/gpu/ |
H A D | GrGpu.h | 230 * Resolves MSAA. The resolveRect must already be in the native destination space. 232 void resolveRenderTarget(GrRenderTarget*, const SkIRect& resolveRect); 810 virtual void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) = 0;
|
H A D | GrGpu.cpp | 661 void GrGpu::resolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in resolveRenderTarget() argument 664 this->onResolveRenderTarget(target, resolveRect); in resolveRenderTarget()
|
/third_party/skia/src/gpu/gl/ |
H A D | GrGLGpu.h | 109 // If glCaps.framebufferResolvesMustBeFullSize() is true, resolveRect must be equal the render 112 void resolveRenderFBOs(GrGLRenderTarget*, const SkIRect& resolveRect, ResolveDirection, 359 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
|
H A D | GrGLGpu.cpp | 2365 void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument 2371 this->resolveRenderFBOs(glRT, resolveRect, ResolveDirection::kMSAAToSingle); in onResolveRenderTarget() 2375 void GrGLGpu::resolveRenderFBOs(GrGLRenderTarget* rt, const SkIRect& resolveRect, in resolveRenderFBOs() argument 2389 SkASSERT(resolveRect == SkIRect::MakeSize(rt->dimensions())); in resolveRenderFBOs() 2392 // happens inside flushScissor since resolveRect is already in native device coordinates. in resolveRenderFBOs() 2394 SkAssertResult(scissor.set(resolveRect)); in resolveRenderFBOs() 2400 resolveRect == SkIRect::MakeSize(rt->dimensions())); in resolveRenderFBOs() 2401 int l = resolveRect.x(); in resolveRenderFBOs() 2402 int b = resolveRect.y(); in resolveRenderFBOs() 2403 int r = resolveRect in resolveRenderFBOs() [all...] |
/third_party/skia/src/gpu/mtl/ |
H A D | GrMtlGpu.h | 224 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
|
/third_party/skia/src/gpu/d3d/ |
H A D | GrD3DGpu.cpp | 563 void GrD3DGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument 568 this->resolveTexture(target, resolveRect.fLeft, resolveRect.fTop, rt, resolveRect); in onResolveRenderTarget()
|
/third_party/skia/src/gpu/vk/ |
H A D | GrVkGpu.h | 151 void onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) override;
|
H A D | GrVkGpu.cpp | 747 void GrVkGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) { in onResolveRenderTarget() argument 757 this->resolveImage(target, rt, resolveRect, in onResolveRenderTarget() 758 SkIPoint::Make(resolveRect.x(), resolveRect.y())); in onResolveRenderTarget()
|