Home
last modified time | relevance | path

Searched refs:devBounds (Results 1 – 17 of 17) sorted by relevance

/external/skia/bench/
DSKPAnimationBench.cpp54 virtual void preConcatFrameMatrix(double animationTimeMs, const SkIRect& devBounds, in preConcatFrameMatrix() argument
60 SkPoint center = SkPoint::Make((devBounds.fLeft + devBounds.fRight) / 2.0f, in preConcatFrameMatrix()
61 (devBounds.fTop + devBounds.fBottom) / 2.0f); in preConcatFrameMatrix()
DSKPAnimationBench.h23 virtual void preConcatFrameMatrix(double animationTimeMs, const SkIRect& devBounds,
/external/skia/src/gpu/
DGrClip.cpp37 SkRect devBounds; in getConservativeBounds() local
42 &devBounds, in getConservativeBounds()
44 devBounds.roundOut(devResult); in getConservativeBounds()
DGrClipMaskManager.h69 const SkRect* devBounds,
113 const SkRect* devBounds,
DGrClipMaskManager.cpp324 const SkRect* devBounds, in setupClipping() argument
342 bool doDevBoundsClip = fDebugClipBatchToBounds && devBounds; in setupClipping()
344 add_rect_to_clip(pipelineBuilder.clip(), *devBounds, &devBoundsClip); in setupClipping()
372 if (devBounds && !DISABLE_DEV_BOUNDS_FOR_CLIP_REDUCTION) { in setupClipping()
373 SkIRect devIBounds = devBounds->roundOut(); in setupClipping()
418 this->getAnalyticClipProcessor(elements, disallowAnalyticAA, clipToRTOffset, devBounds, in setupClipping()
422 if (nullptr == devBounds || in setupClipping()
423 !SkRect::Make(scissorSpaceIBounds).contains(*devBounds)) { in setupClipping()
DGrDrawTarget.h239 const SkRect* devBounds);
DGrOvalRenderer.cpp1311 SkRect devBounds = geometry.fBounds; in create_diellipse_batch() local
1312 viewMatrix.mapRect(&devBounds); in create_diellipse_batch()
1313 return DIEllipseBatch::Create(geometry, devBounds); in create_diellipse_batch()
/external/skia/src/core/
DSkRecorder.h135 SkIRect devBounds() const { in devBounds() function
136 SkIRect devBounds; in devBounds() local
137 this->getClipDeviceBounds(&devBounds); in devBounds()
138 return devBounds; in devBounds()
DSkRecorder.cpp346 APPEND(Restore, this->devBounds(), this->getTotalMatrix()); in didRestore()
360 APPEND(ClipRect, this->devBounds(), rect, opAA); in onClipRect()
366 APPEND(ClipRRect, this->devBounds(), rrect, opAA); in onClipRRect()
372 APPEND(ClipPath, this->devBounds(), path, opAA); in onClipPath()
377 APPEND(ClipRegion, this->devBounds(), deviceRgn, op); in onClipRegion()
DSkRecordDraw.cpp236 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); } in updateClipBounds()
237 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); } in updateClipBounds()
238 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); } in updateClipBounds()
239 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); } in updateClipBounds()
242 void updateClipBoundsForClipOp(const SkIRect& devBounds) { in updateClipBoundsForClipOp() argument
243 Bounds clip = SkRect::Make(devBounds); in updateClipBoundsForClipOp()
260 Bounds clip = SkRect::Make(op.devBounds); in updateClipBounds()
DSkClipStack.cpp818 SkRect* devBounds, in getConservativeBounds() argument
820 SkASSERT(devBounds); in getConservativeBounds()
822 devBounds->setLTRB(0, 0, in getConservativeBounds()
837 if (!devBounds->intersect(temp)) { in getConservativeBounds()
838 devBounds->setEmpty(); in getConservativeBounds()
DSkDraw.cpp130 SkIRect devBounds = fRC->getBounds(); in computeConservativeLocalClipBounds() local
132 devBounds.outset(1, 1); in computeConservativeLocalClipBounds()
133 inverse.mapRect(localBounds, SkRect::Make(devBounds)); in computeConservativeLocalClipBounds()
1202 SkIRect devBounds; in drawBitmapAsMask() local
1203 devBounds.set(0, 0, fDst.width(), fDst.height()); in drawBitmapAsMask()
1205 if (!mask.fBounds.intersect(devBounds)) { in drawBitmapAsMask()
/external/skia/src/gpu/batches/
DGrDefaultPathRenderer.cpp225 const SkRect& devBounds) { in Create() argument
226 return new DefaultPathBatch(geometry, coverage, viewMatrix, isHairline, devBounds); in Create()
382 bool isHairline, const SkRect& devBounds) in DefaultPathBatch() argument
389 this->setBounds(devBounds); in DefaultPathBatch()
668 SkRect devBounds; in internalDrawPath() local
669 GetPathDevBounds(path, pipelineBuilder->getRenderTarget(), viewMatrix, &devBounds); in internalDrawPath()
685 bounds = devBounds; in internalDrawPath()
716 devBounds)); in internalDrawPath()
DGrAAHairLinePathRenderer.cpp634 bool check_bounds(const SkMatrix& viewMatrix, const SkRect& devBounds, void* vertices, int vCount) in check_bounds() argument
636 SkRect tolDevBounds = devBounds; in check_bounds()
/external/skia/include/private/
DSkRecords.h194 SkIRect devBounds;
218 SkIRect devBounds;
222 SkIRect devBounds;
226 SkIRect devBounds;
230 SkIRect devBounds;
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp97 SkIRect devBounds = rect.getBounds(); in DrawPath() local
99 devBounds.outset(1, 1); in DrawPath()
100 SkRect cullRect = SkRect::Make(devBounds); in DrawPath()
/external/skia/include/core/
DSkClipStack.h447 SkRect* devBounds,