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

  /external/skia/legacy/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.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,
SkScan_Hairline.cpp 348 void SkScan::FrameRect(const SkRect& r, const SkPoint& strokeSize,
350 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
352 if (strokeSize.fX < 0 || strokeSize.fY < 0) {
356 const SkScalar dx = strokeSize.fX;
357 const SkScalar dy = strokeSize.fY;
SkScan_Antihair.cpp 988 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
990 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
992 SkScalar rx = SkScalarHalf(strokeSize.fX);
993 SkScalar ry = SkScalarHalf(strokeSize.fY);
1023 rx = strokeSize.fX - rx;
1024 ry = strokeSize.fY - ry;
1056 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
1059 AntiFrameRect(r, strokeSize, &clip.bwRgn(), blitter);
1062 AntiFrameRect(r, strokeSize, &wrap.getRgn(), wrap.getBlitter())
    [all...]
SkDraw.cpp 794 SkPoint* strokeSize) {
802 matrix.mapVectors(strokeSize, &pt, 1);
803 strokeSize->fX = SkScalarAbs(strokeSize->fX);
804 strokeSize->fY = SkScalarAbs(strokeSize->fY);
810 SkPoint* strokeSize) {
828 } else if (easy_rect_join(paint, matrix, strokeSize)) {
852 SkPoint strokeSize;
853 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
    [all...]
  /external/skia/legacy/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/include/core/
SkDraw.h 95 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
99 SkPoint* strokeSize);
  /external/skia/src/gpu/
GrContext.cpp 718 GrVec strokeSize;
720 strokeSize.set(width, width);
721 combinedMatrix.mapVectors(&strokeSize, 1);
722 strokeSize.setAbs(strokeSize);
724 strokeSize.set(SK_Scalar1, SK_Scalar1);
727 strokeSize, useVertexCoverage);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
Utils.java 161 float strokeSize, float diamondStrokeSize, float markerStrokeSize) {
162 return Math.max(strokeSize, Math.max(diamondStrokeSize, markerStrokeSize));

Completed in 532 milliseconds