Searched refs:strokeSize (Results 1 - 5 of 5) sorted by relevance

/external/skia/src/core/
H A DSkScan.h54 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
56 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
86 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
H A DSkScan_Antihair.cpp916 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
918 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
920 SkScalar rx = SkScalarHalf(strokeSize.fX);
921 SkScalar ry = SkScalarHalf(strokeSize.fY);
945 rx = strokeSize.fX - rx;
946 ry = strokeSize.fY - ry;
958 if (strokeSize.fX < 1 || strokeSize.fY < 1) {
996 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
[all...]
H A DSkScan_Hairline.cpp632 void SkScan::FrameRect(const SkRect& r, const SkPoint& strokeSize,
634 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
636 if (strokeSize.fX < 0 || strokeSize.fY < 0) {
640 const SkScalar dx = strokeSize.fX;
641 const SkScalar dy = strokeSize.fY;
H A DSkDraw.h116 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
120 SkPoint* strokeSize);
H A DSkDraw.cpp679 SkPoint* strokeSize) {
685 *strokeSize = compute_stroke_size(paint, matrix);
691 SkPoint* strokeSize) {
709 } else if (easy_rect_join(paint, matrix, strokeSize)) {
745 SkPoint strokeSize; local
746 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
773 // For kStroke_RectType, strokeSize is already computed.
775 ? strokeSize
810 SkScan::AntiFrameRect(localDevRect, strokeSize, clip, blitter);
812 SkScan::FrameRect(localDevRect, strokeSize, cli
678 easy_rect_join(const SkPaint& paint, const SkMatrix& matrix, SkPoint* strokeSize) argument
689 ComputeRectType(const SkPaint& paint, const SkMatrix& matrix, SkPoint* strokeSize) argument
[all...]

Completed in 261 milliseconds