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

  /external/skia/bench/
SKPAnimationBench.cpp 55 virtual void preConcatFrameMatrix(double animationTimeMs, const SkIRect& devBounds,
61 SkPoint center = SkPoint::Make((devBounds.fLeft + devBounds.fRight) / 2.0f,
62 (devBounds.fTop + devBounds.fBottom) / 2.0f);
SKPAnimationBench.h 23 virtual void preConcatFrameMatrix(double animationTimeMs, const SkIRect& devBounds,
  /external/skia/src/core/
SkRasterClip.cpp 63 void SkConservativeClip::op(const SkRect& localRect, const SkMatrix& ctm, const SkIRect& devBounds,
70 ir = devBounds;
81 void SkConservativeClip::op(const SkRRect& rrect, const SkMatrix& ctm, const SkIRect& devBounds,
83 this->op(rrect.getBounds(), ctm, devBounds, op, doAA);
86 void SkConservativeClip::op(const SkPath& path, const SkMatrix& ctm, const SkIRect& devBounds,
93 ir = devBounds;
243 bool SkRasterClip::op(const SkRRect& rrect, const SkMatrix& matrix, const SkIRect& devBounds,
245 SkIRect bounds(devBounds);
254 bool SkRasterClip::op(const SkPath& path, const SkMatrix& matrix, const SkIRect& devBounds,
257 SkIRect bounds(devBounds);
    [all...]
SkRecordDraw.cpp 256 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
257 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
258 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
259 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
262 void updateClipBoundsForClipOp(const SkIRect& devBounds) {
263 Bounds clip = SkRect::Make(devBounds);
273 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
277 // devBounds reflect the state of the world after the saveLayer/restore block is done,
280 Bounds clip = SkRect::Make(op.devBounds);
SkClipStack.cpp 878 SkRect* devBounds,
880 SkASSERT(devBounds);
882 devBounds->setLTRB(0, 0,
897 if (!devBounds->intersect(temp)) {
898 devBounds->setEmpty();
    [all...]
SkClipStack.h 534 * 'devBounds' is the result of an intersection of rects. In this case
535 * 'devBounds' is the exact answer/clip.
541 SkRect* devBounds,
SkDraw.cpp 106 SkIRect devBounds = fRC->getBounds();
108 devBounds.outset(1, 1);
109 inverse.mapRect(localBounds, SkRect::Make(devBounds));
    [all...]
  /external/skia/src/gpu/instanced/
InstanceProcessor.h 47 static IndexRange GetIndexRangeForOval(GrAAType, const SkRect& devBounds);
InstanceProcessor.cpp     [all...]
  /external/skia/src/gpu/
GrClipStackClip.cpp 68 SkRect devBounds;
69 fStack->getConservativeBounds(0, 0, width, height, &devBounds, isIntersectionOfRects);
70 devBounds.roundOut(devResult);
253 SkRect devBounds = SkRect::MakeIWH(renderTargetContext->width(), renderTargetContext->height());
254 if (!devBounds.intersect(*bounds)) {
262 const GrReducedClip reducedClip(*fStack, devBounds,
265 if (reducedClip.hasIBounds() && !GrClip::IsInsideClip(reducedClip.ibounds(), devBounds)) {
306 get_analytic_clip_processor(reducedClip.elements(), disallowAnalyticAA, devBounds,
GrSoftwarePathRenderer.cpp 27 SkIRect* devBounds) {
42 shapeDevBounds.roundOut(devBounds);
  /external/skia/include/private/
SkRecords.h 175 SkIRect devBounds;
209 SkIRect devBounds;
213 SkIRect devBounds;
217 SkIRect devBounds;
221 SkIRect devBounds;
  /external/skia/src/gpu/ops/
GrDefaultPathRenderer.cpp 103 bool isHairline, const SkRect& devBounds) {
105 viewMatrix, isHairline, devBounds));
123 const SkMatrix& viewMatrix, bool isHairline, const SkRect& devBounds)
131 this->setBounds(devBounds, HasAABloat::kNo,
526 SkRect devBounds;
528 &devBounds);
536 bounds = devBounds;
562 viewMatrix, isHairline, devBounds);
GrTessellatingPathRenderer.cpp 333 SkRect devBounds;
334 viewMatrix.mapRect(&devBounds, shape.bounds());
338 devBounds.join(SkRect::Make(fDevClipBounds));
340 this->setBounds(devBounds, HasAABloat::kNo, IsZeroArea::kNo);
GrMSAAPathRenderer.cpp 222 const SkMatrix& viewMatrix, const SkRect& devBounds) {
234 color, path, viewMatrix, devBounds, maxLineVertices, maxQuadVertices, isIndexed));
252 const SkRect& devBounds, int maxLineVertices, int maxQuadVertices, bool isIndexed)
259 this->setBounds(devBounds, HasAABloat::kNo, IsZeroArea::kNo);
618 SkRect devBounds;
620 &devBounds);
625 MSAAPathOp::Make(paint.getColor(), path, viewMatrix, devBounds);
646 bounds = devBounds;
GrAAHairLinePathRenderer.cpp 635 bool check_bounds(const SkMatrix& viewMatrix, const SkRect& devBounds, void* vertices, int vCount)
637 SkRect tolDevBounds = devBounds;
    [all...]
GrShadowRRectOp.cpp 108 SkRect devBounds = SkRect::MakeLTRB(center.fX - outerRadius, center.fY - outerRadius,
112 Circle{color, outerRadius, innerRadius, blurRadius, devBounds, stroked});
    [all...]
GrOvalOpFactory.cpp 687 SkRect devBounds = SkRect::MakeLTRB(center.fX - outerRadius, center.fY - outerRadius,
721 devBounds,
733 devBounds,
    [all...]

Completed in 1198 milliseconds