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

  /external/skia/src/core/
SkScan.h 48 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
50 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
74 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
SkScan_Antihair.cpp 915 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
917 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
919 SkScalar rx = SkScalarHalf(strokeSize.fX);
920 SkScalar ry = SkScalarHalf(strokeSize.fY);
944 rx = strokeSize.fX - rx;
945 ry = strokeSize.fY - ry;
957 if (strokeSize.fX < 1 || strokeSize.fY < 1) {
995 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
    [all...]
SkScan_Hairline.cpp 425 void SkScan::FrameRect(const SkRect& r, const SkPoint& strokeSize,
427 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
429 if (strokeSize.fX < 0 || strokeSize.fY < 0) {
433 const SkScalar dx = strokeSize.fX;
434 const SkScalar dy = strokeSize.fY;
SkDraw.cpp 745 SkPoint* strokeSize) {
751 *strokeSize = compute_stroke_size(paint, matrix);
757 SkPoint* strokeSize) {
775 } else if (easy_rect_join(paint, matrix, strokeSize)) {
811 SkPoint strokeSize;
812 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
839 // For kStroke_RectType, strokeSize is already computed.
841 ? strokeSize
876 SkScan::AntiFrameRect(localDevRect, strokeSize, clip, blitter);
878 SkScan::FrameRect(localDevRect, strokeSize, clip, blitter)
    [all...]
  /external/skia/include/core/
SkDraw.h 110 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
114 SkPoint* strokeSize);
  /packages/apps/DeskClock/src/com/android/deskclock/
Utils.java 241 float strokeSize, float dotStrokeSize, float markerStrokeSize) {
242 return Math.max(strokeSize, Math.max(dotStrokeSize, markerStrokeSize));
251 float strokeSize = resources.getDimension(R.dimen.circletimer_circle_size);
254 return calculateRadiusOffset(strokeSize, dotStrokeSize, markerStrokeSize);
    [all...]

Completed in 69 milliseconds