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

/external/skia/src/gpu/
H A DGrClip.cpp37 SkRect devBounds; local
42 &devBounds,
44 devBounds.roundOut(devResult);
H A DGrClipMaskManager.h65 * clip. devBounds is optional but can help optimize clipping.
69 const SkRect* devBounds,
113 const SkRect* devBounds,
H A DGrClipMaskManager.cpp324 const SkRect* devBounds,
342 bool doDevBoundsClip = fDebugClipBatchToBounds && devBounds;
344 add_rect_to_clip(pipelineBuilder.clip(), *devBounds, &devBoundsClip);
372 if (devBounds && !DISABLE_DEV_BOUNDS_FOR_CLIP_REDUCTION) {
373 SkIRect devIBounds = devBounds->roundOut();
418 this->getAnalyticClipProcessor(elements, disallowAnalyticAA, clipToRTOffset, devBounds,
422 if (nullptr == devBounds ||
423 !SkRect::Make(scissorSpaceIBounds).contains(*devBounds)) {
322 setupClipping(const GrPipelineBuilder& pipelineBuilder, GrPipelineBuilder::AutoRestoreStencil* ars, const SkRect* devBounds, GrAppliedClip* out) argument
H A DGrDrawTarget.h239 const SkRect* devBounds);
H A DGrOvalRenderer.cpp1311 SkRect devBounds = geometry.fBounds; local
1312 viewMatrix.mapRect(&devBounds);
1313 return DIEllipseBatch::Create(geometry, devBounds);
/external/skia/bench/
H A DSKPAnimationBench.cpp54 virtual void preConcatFrameMatrix(double animationTimeMs, const SkIRect& devBounds, argument
60 SkPoint center = SkPoint::Make((devBounds.fLeft + devBounds.fRight) / 2.0f,
61 (devBounds.fTop + devBounds.fBottom) / 2.0f);
H A DSKPAnimationBench.h23 virtual void preConcatFrameMatrix(double animationTimeMs, const SkIRect& devBounds,
/external/skia/src/core/
H A DSkRecorder.h135 SkIRect devBounds() const { function in class:SkRecorder
136 SkIRect devBounds; local
137 this->getClipDeviceBounds(&devBounds);
138 return devBounds;
H A DSkRecorder.cpp346 APPEND(Restore, this->devBounds(), this->getTotalMatrix());
360 APPEND(ClipRect, this->devBounds(), rect, opAA);
366 APPEND(ClipRRect, this->devBounds(), rrect, opAA);
372 APPEND(ClipPath, this->devBounds(), path, opAA);
377 APPEND(ClipRegion, this->devBounds(), deviceRgn, op);
H A DSkClipStack.cpp818 SkRect* devBounds,
820 SkASSERT(devBounds);
822 devBounds->setLTRB(0, 0,
837 if (!devBounds->intersect(temp)) {
838 devBounds->setEmpty();
814 getConservativeBounds(int offsetX, int offsetY, int maxWidth, int maxHeight, SkRect* devBounds, bool* isIntersectionOfRects) const argument
H A DSkRecordDraw.cpp236 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
237 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
238 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
239 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
242 void updateClipBoundsForClipOp(const SkIRect& devBounds) { argument
243 Bounds clip = SkRect::Make(devBounds);
253 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
257 // devBounds reflect the state of the world after the saveLayer/restore block is done,
260 Bounds clip = SkRect::Make(op.devBounds);
H A DSkDraw.cpp130 SkIRect devBounds = fRC->getBounds(); local
132 devBounds.outset(1, 1);
133 inverse.mapRect(localBounds, SkRect::Make(devBounds));
1202 SkIRect devBounds; local
1203 devBounds.set(0, 0, fDst.width(), fDst.height());
1205 if (!mask.fBounds.intersect(devBounds)) {
/external/skia/src/gpu/batches/
H A DGrDefaultPathRenderer.cpp225 const SkRect& devBounds) {
226 return new DefaultPathBatch(geometry, coverage, viewMatrix, isHairline, devBounds);
382 bool isHairline, const SkRect& devBounds)
389 this->setBounds(devBounds);
668 SkRect devBounds; local
669 GetPathDevBounds(path, pipelineBuilder->getRenderTarget(), viewMatrix, &devBounds);
685 bounds = devBounds;
716 devBounds));
223 Create(const Geometry& geometry, uint8_t coverage, const SkMatrix& viewMatrix, bool isHairline, const SkRect& devBounds) argument
381 DefaultPathBatch(const Geometry& geometry, uint8_t coverage, const SkMatrix& viewMatrix, bool isHairline, const SkRect& devBounds) argument
H A DGrAAHairLinePathRenderer.cpp634 bool check_bounds(const SkMatrix& viewMatrix, const SkRect& devBounds, void* vertices, int vCount) argument
636 SkRect tolDevBounds = devBounds;
/external/skia/include/private/
H A DSkRecords.h194 SkIRect devBounds;
218 SkIRect devBounds;
222 SkIRect devBounds;
226 SkIRect devBounds;
230 SkIRect devBounds;
/external/skia/include/core/
H A DSkClipStack.h440 * 'devBounds' is the result of an intersection of rects. In this case
441 * 'devBounds' is the exact answer/clip.
447 SkRect* devBounds,
/external/pdfium/core/src/fxge/skia/
H A Dfx_skia_device.cpp97 SkIRect devBounds = rect.getBounds(); local
99 devBounds.outset(1, 1);
100 SkRect cullRect = SkRect::Make(devBounds);

Completed in 183 milliseconds