HomeSort by relevance Sort by last modified time
    Searched refs:innerClipBounds (Results 1 - 4 of 4) sorted by null

  /external/skia/src/gpu/
GrClip.h 70 * @param innerClipBounds device-space rect contained by the clip (SkRect or SkIRect).
74 constexpr static bool IsInsideClip(const TRect& innerClipBounds, const SkRect& queryBounds) {
75 return innerClipBounds.fRight > innerClipBounds.fLeft + kBoundsTolerance &&
76 innerClipBounds.fBottom > innerClipBounds.fTop + kBoundsTolerance &&
77 innerClipBounds.fLeft < queryBounds.fLeft + kBoundsTolerance &&
78 innerClipBounds.fTop < queryBounds.fTop + kBoundsTolerance &&
79 innerClipBounds.fRight > queryBounds.fRight - kBoundsTolerance &&
80 innerClipBounds.fBottom > queryBounds.fBottom - kBoundsTolerance
    [all...]
  /external/skqp/src/gpu/
GrClip.h 70 * @param innerClipBounds device-space rect contained by the clip (SkRect or SkIRect).
74 constexpr static bool IsInsideClip(const TRect& innerClipBounds, const SkRect& queryBounds) {
75 return innerClipBounds.fRight > innerClipBounds.fLeft + kBoundsTolerance &&
76 innerClipBounds.fBottom > innerClipBounds.fTop + kBoundsTolerance &&
77 innerClipBounds.fLeft < queryBounds.fLeft + kBoundsTolerance &&
78 innerClipBounds.fTop < queryBounds.fTop + kBoundsTolerance &&
79 innerClipBounds.fRight > queryBounds.fRight - kBoundsTolerance &&
80 innerClipBounds.fBottom > queryBounds.fBottom - kBoundsTolerance
    [all...]
  /external/skia/src/effects/
SkComposeImageFilter.cpp 40 SkIRect innerClipBounds;
41 innerClipBounds = this->getInput(0)->filterBounds(ctx.clipBounds(), ctx.ctm());
42 Context innerContext(ctx.ctm(), innerClipBounds, ctx.cache(), ctx.outputProperties());
  /external/skqp/src/effects/
SkComposeImageFilter.cpp 40 SkIRect innerClipBounds;
41 innerClipBounds = this->getInput(0)->filterBounds(ctx.clipBounds(), ctx.ctm());
42 Context innerContext(ctx.ctm(), innerClipBounds, ctx.cache(), ctx.outputProperties());

Completed in 506 milliseconds