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

  /external/skia/src/gpu/
GrClip.cpp 37 SkRect devBounds;
42 &devBounds,
44 devBounds.roundOut(devResult);
GrClipMaskManager.h 49 * clip. devBounds is optional but can help optimize clipping.
55 const SkRect* devBounds);
100 const SkRect* devBounds);
GrDrawTarget.h 256 const SkRect* devBounds, GrDrawTarget* target);
259 const GrBatch* batch, const SkRect* devBounds,
324 const SkRect* devBounds) = 0;
382 const SkRect* devBounds) override;
GrDefaultPathRenderer.cpp 223 bool isHairline, const SkRect& devBounds) {
225 devBounds));
385 bool isHairline, const SkRect& devBounds) {
392 this->setBounds(devBounds);
657 SkRect devBounds;
658 GetPathDevBounds(path, pipelineBuilder->getRenderTarget(), viewMatrix, &devBounds);
674 bounds = devBounds;
701 isHairline, devBounds));
GrDrawTarget.cpp 225 SkRect devBounds = path->getBounds();
226 pathProc->viewMatrix().mapRect(&devBounds);
232 if (!this->setupClip(pipelineBuilder, &arfp, &ars, &scissorState, &devBounds)) {
242 GrDrawTarget::PipelineInfo pipelineInfo(pipelineBuilder, &scissorState, pathProc, &devBounds,
506 const SkRect* devBounds,
513 &fDstCopy, devBounds)) {
521 const SkRect* devBounds,
528 &fDstCopy, devBounds)) {
781 const SkRect* devBounds) {
786 devBounds);
    [all...]
GrClipMaskManager.cpp 213 const SkRect* devBounds) {
286 devBounds))) {
289 if (NULL == devBounds ||
290 !SkRect::Make(scissorSpaceIBounds).contains(*devBounds)) {
    [all...]
GrAAHairLinePathRenderer.cpp 641 bool check_bounds(const SkMatrix& viewMatrix, const SkRect& devBounds, void* vertices, int vCount)
643 SkRect tolDevBounds = devBounds;
    [all...]
GrOvalRenderer.cpp     [all...]
  /external/skia/src/core/
SkRecorder.h 130 SkIRect devBounds() const {
131 SkIRect devBounds;
132 this->getClipDeviceBounds(&devBounds);
133 return devBounds;
SkRecorder.cpp 296 APPEND(Restore, this->devBounds(), this->getTotalMatrix());
315 APPEND(ClipRect, this->devBounds(), rect, opAA);
321 APPEND(ClipRRect, this->devBounds(), rrect, opAA);
327 APPEND(ClipPath, this->devBounds(), delay_copy(path), opAA);
332 APPEND(ClipRegion, this->devBounds(), delay_copy(deviceRgn), op);
SkRecords.h 223 RECORD2(Restore, SkIRect, devBounds, TypedMatrix, matrix);
236 RECORD3(ClipPath, SkIRect, devBounds, PreCachedPath, path, RegionOpAndAA, opAA);
237 RECORD3(ClipRRect, SkIRect, devBounds, SkRRect, rrect, RegionOpAndAA, opAA);
238 RECORD3(ClipRect, SkIRect, devBounds, SkRect, rect, RegionOpAndAA, opAA);
239 RECORD3(ClipRegion, SkIRect, devBounds, SkRegion, region, SkRegion::Op, op);
SkClipStack.cpp 815 SkRect* devBounds,
817 SkASSERT(devBounds);
819 devBounds->setLTRB(0, 0,
834 if (!devBounds->intersect(temp)) {
835 devBounds->setEmpty();
SkRecordDraw.cpp 241 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
242 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
243 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
244 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
247 void updateClipBoundsForClipOp(const SkIRect& devBounds) {
248 Bounds clip = SkRect::Make(devBounds);
258 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
262 // devBounds reflect the state of the world after the saveLayer/restore block is done,
265 Bounds clip = SkRect::Make(op.devBounds);
SkDraw.cpp 126 SkIRect devBounds = fRC->getBounds();
128 devBounds.outset(1, 1);
129 inverse.mapRect(localBounds, SkRect::Make(devBounds));
    [all...]
SkMaskFilter.cpp 311 bool SkMaskFilter::canFilterMaskGPU(const SkRect& devBounds,
  /external/skia/include/core/
SkMaskFilter.h 92 virtual bool canFilterMaskGPU(const SkRect& devBounds,
SkClipStack.h 441 * 'devBounds' is the result of an intersection of rects. In this case
442 * 'devBounds' is the exact answer/clip.
448 SkRect* devBounds,
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 94 SkIRect devBounds = rect.getBounds();
96 devBounds.outset(1, 1);
97 SkRect cullRect = SkRect::Make(devBounds);
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 46 virtual bool canFilterMaskGPU(const SkRect& devBounds,
    [all...]

Completed in 310 milliseconds