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

  /external/skia/include/core/
SkScan.h 50 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
52 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
89 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
SkDraw.h 94 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
98 SkPoint* strokeSize);
  /external/skia/src/core/
SkScan_Hairline.cpp 325 void SkScan::FrameRect(const SkRect& r, const SkPoint& strokeSize,
327 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
329 if (strokeSize.fX < 0 || strokeSize.fY < 0) {
333 const SkScalar dx = strokeSize.fX;
334 const SkScalar dy = strokeSize.fY;
SkScan_Antihair.cpp 770 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
772 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
774 SkScalar rx = SkScalarHalf(strokeSize.fX);
775 SkScalar ry = SkScalarHalf(strokeSize.fY);
805 rx = strokeSize.fX - rx;
806 ry = strokeSize.fY - ry;
838 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
841 AntiFrameRect(r, strokeSize, &clip.bwRgn(), blitter);
844 AntiFrameRect(r, strokeSize, &wrap.getRgn(), wrap.getBlitter())
    [all...]
SkDraw.cpp 669 SkPoint* strokeSize) {
677 matrix.mapVectors(strokeSize, &pt, 1);
678 strokeSize->fX = SkScalarAbs(strokeSize->fX);
679 strokeSize->fY = SkScalarAbs(strokeSize->fY);
685 SkPoint* strokeSize) {
703 } else if (easy_rect_join(paint, matrix, strokeSize)) {
724 SkPoint strokeSize;
725 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
    [all...]
  /external/skia/src/gpu/
GrContext.cpp     [all...]

Completed in 78 milliseconds