HomeSort by relevance Sort by last modified time
    Searched defs:clipBounds (Results 1 - 25 of 30) sorted by null

1 2

  /external/skia/src/core/
SkScan.cpp 30 const SkIRect& clipBounds = clip->getBounds();
32 if (clipBounds.contains(r)) {
36 if (rr.intersect(clipBounds)) {
SkImageFilter.cpp 208 SkImageFilterCacheKey key(fUniqueID, context.ctm(), context.clipBounds(), srcGenID, srcSubset);
346 return dstBounds->intersect(ctx.clipBounds());
425 if (!bounds->intersect(ctx.clipBounds())) {
467 SkIRect clipBounds = this->onFilterNodeBounds(ctx.clipBounds(), ctx.ctm(),
469 return Context(ctx.ctm(), clipBounds, ctx.cache(), ctx.outputProperties());
SkBitmapDevice.cpp 399 const SkIRect clipBounds = fRCStack.rc().getBounds().makeOffset(-x, -y);
402 SkImageFilter::Context ctx(matrix, clipBounds, cache.get(), outputProperties);
SkCanvas.cpp     [all...]
  /external/skia/src/effects/
SkComposeImageFilter.cpp 40 innerClipBounds = this->getInput(0)->filterBounds(ctx.clipBounds(), ctx.ctm());
50 SkIRect clipBounds = ctx.clipBounds();
51 clipBounds.offset(-innerOffset.x(), -innerOffset.y());
52 Context outerContext(outerMatrix, clipBounds, ctx.cache(), ctx.outputProperties());
  /external/skia/include/core/
SkImageFilter.h 55 Context(const SkMatrix& ctm, const SkIRect& clipBounds, SkImageFilterCache* cache,
58 , fClipBounds(clipBounds)
64 const SkIRect& clipBounds() const { return fClipBounds; }
  /external/skia/src/gpu/
GrBlurUtils.cpp 26 static bool clip_bounds_quick_reject(const SkIRect& clipBounds, const SkIRect& rect) {
27 return clipBounds.isEmpty() || rect.isEmpty() || !SkIRect::Intersects(clipBounds, rect);
64 const SkIRect& clipBounds,
68 if (!SkDraw::DrawToMask(devPath, &clipBounds, filter, &viewMatrix, &srcM,
80 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) {
158 SkIRect clipBounds;
161 &clipBounds);
199 clipBounds,
207 if (clip_bounds_quick_reject(clipBounds, finalIRect))
    [all...]
GrRenderTargetContext.cpp 210 const SkIRect& clipBounds) {
218 byteLength, x, y, clipBounds);
225 const SkIRect& clipBounds) {
233 byteLength, pos, scalarsPerPosition, offset, clipBounds);
239 const SkIRect& clipBounds) {
247 y, filter, clipBounds);
464 SkRect clipBounds;
467 if (!SkMatrixPriv::InverseMapRect(viewMatrix, &clipBounds, SkRect::Make(clipDevBounds))) {
472 if (!rect->intersects(clipBounds)) {
477 if (clipBounds.fLeft > rect->fLeft)
    [all...]
SkGpuDevice.cpp 186 const SkIRect clipBounds = this->devClipBounds().makeOffset(-left, -top);
189 SkImageFilter::Context ctx(matrix, clipBounds, cache.get(), outputProperties);
    [all...]
  /frameworks/base/libs/hwui/pipeline/skia/
ReorderBarrierDrawables.cpp 153 Rect clipBounds;
154 casterProperties.getClippingRectForFlags(CLIP_TO_CLIP_BOUNDS, &clipBounds);
155 casterClipRect = clipBounds.toSkRect();
184 // intersect the shadow-casting path with the clipBounds, if present
  /external/skia/src/image/
SkImage.cpp 263 const SkIRect& clipBounds, SkIRect* outSubset,
278 SkImageFilter::Context context(SkMatrix::I(), clipBounds, cache.get(), outputProperties);
286 if (!outSubset->intersect(clipBounds.makeOffset(-offset->x(), -offset->y()))) {
  /frameworks/base/libs/hwui/tests/unit/
RenderNodeDrawableTests.cpp 172 SkRect clipBounds;
173 recorder.getClipBounds(&clipBounds);
174 return clipBounds;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ViewGroup_Delegate.java 80 Rect clipBounds = canvas.getClipBounds();
81 Rect newBounds = new Rect(clipBounds);
85 canvas.clipRect(clipBounds, Op.REPLACE);
93 Rect clipBounds = canvas.getClipBounds();
94 if (clipBounds.isEmpty()) {
97 BufferedImage image = new BufferedImage(clipBounds.width(), clipBounds.height(),
  /external/pdfium/xfa/fwl/
cfwl_widgetmgr.cpp 432 CFX_RectF clipBounds;
439 clipBounds = pGraphics->GetClipRect();
440 clipCopy = clipBounds;
444 clipBounds = CFX_RectF(pMatrix->a, pMatrix->b, pMatrix->c, pMatrix->d);
451 clipBounds.Intersect(pWidget->GetClientRect());
452 if (!clipBounds.IsEmpty())
453 DrawChild(pWidget, clipBounds, pGraphics, pMatrix);
479 CFX_RectF clipBounds(rtWidget);
486 CFX_PointF pos = widgetMatrix.Transform(clipBounds.TopLeft());
487 clipBounds.left = pos.x
    [all...]
  /external/skia/src/gpu/ops/
GrTessellatingPathRenderer.cpp 230 SkRect clipBounds = SkRect::Make(fDevClipBounds);
236 vmi.mapRect(&clipBounds);
240 int count = GrTessellator::PathToTriangles(getPath(), tol, clipBounds, &allocator,
259 SkRect clipBounds = SkRect::Make(fDevClipBounds);
264 int count = GrTessellator::PathToTriangles(path, tol, clipBounds, &allocator,
  /external/skia/tests/
PictureTest.cpp 634 SkIRect clipBounds;
641 clipBounds = canvas->getDeviceClipBounds();
642 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
643 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
644 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
645 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
651 clipBounds = canvas->getDeviceClipBounds();
652 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
653 REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
654 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom)
    [all...]
ImageFilterTest.cpp     [all...]
  /frameworks/base/libs/hwui/
FrameBuilder.cpp 427 // intersect the shadow-casting path with the clipBounds, if present
432 Rect clipBounds;
433 properties.getClippingRectForFlags(CLIP_TO_CLIP_BOUNDS, &clipBounds);
435 clipBoundsPath.addRect(clipBounds.left, clipBounds.top,
436 clipBounds.right, clipBounds.bottom);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 625 Rectangle clipBounds = originalGraphics.getClip() != null ? originalGraphics
627 if (clipBounds != null) {
628 if (clipBounds.width == 0 || clipBounds.height == 0) {
632 // If we have clipBounds available, use them as they will always be
634 x = clipBounds.x;
635 y = clipBounds.y;
636 width = clipBounds.width;
637 height = clipBounds.height;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskView.java 689 Rect clipBounds = new Rect(mViewBounds.mClipBounds);
690 if (!clipBounds.isEmpty()) {
692 clipBounds.scale(getScaleX());
693 inBounds = clipBounds.contains(mDownTouchPos.x, mDownTouchPos.y);
  /external/skia/src/pdf/
SkPDFDevice.cpp 261 SkRect clipBounds = bounds;
262 clipBounds.outset(SK_Scalar1, SK_Scalar1);
263 if (!calculate_inverse_path(clipBounds, *outClipPath, outClipPath)) {
    [all...]
  /prebuilts/sdk/current/support/transition/libs/
android-support-transition.jar 
  /prebuilts/sdk/current/support/compat/libs/
android-support-compat.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 589 milliseconds

1 2