OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strokeSize
(Results
1 - 6
of
6
) sorted by null
/external/skia/src/core/
SkScan_Hairline.cpp
319
void SkScan::FrameRect(const SkRect& r, const SkPoint&
strokeSize
,
321
SkASSERT(
strokeSize
.fX >= 0 &&
strokeSize
.fY >= 0);
323
if (
strokeSize
.fX < 0 ||
strokeSize
.fY < 0) {
327
const SkScalar dx =
strokeSize
.fX;
328
const SkScalar dy =
strokeSize
.fY;
SkScan_Antihair.cpp
749
void SkScan::AntiFrameRect(const SkRect& r, const SkPoint&
strokeSize
,
751
SkASSERT(
strokeSize
.fX >= 0 &&
strokeSize
.fY >= 0);
753
SkScalar rx = SkScalarHalf(
strokeSize
.fX);
754
SkScalar ry = SkScalarHalf(
strokeSize
.fY);
784
rx =
strokeSize
.fX - rx;
785
ry =
strokeSize
.fY - ry;
SkDraw.cpp
657
SkPoint*
strokeSize
) {
665
matrix.mapVectors(
strokeSize
, &pt, 1);
666
strokeSize
->fX = SkScalarAbs(
strokeSize
->fX);
667
strokeSize
->fY = SkScalarAbs(
strokeSize
->fY);
673
SkPoint*
strokeSize
) {
691
} else if (easy_rect_join(paint, matrix,
strokeSize
)) {
713
SkPoint
strokeSize
;
714
RectType rtype = ComputeRectType(paint, *fMatrix, &
strokeSize
);
[
all
...]
/external/skia/include/core/
SkScan.h
81
static void FrameRect(const SkRect&, const SkPoint&
strokeSize
,
83
static void AntiFrameRect(const SkRect&, const SkPoint&
strokeSize
,
SkDraw.h
100
* Iff RectType == kStroke_RectType, then
strokeSize
is set to the device
104
SkPoint*
strokeSize
);
/external/skia/gpu/src/
GrContext.cpp
940
GrVec
strokeSize
;;
942
strokeSize
.set(width, width);
943
combinedMatrix.mapVectors(&
strokeSize
, 1);
944
strokeSize
.setAbs(
strokeSize
);
946
strokeSize
.set(GR_Scalar1, GR_Scalar1);
948
strokeAARect(target, paint, devRect,
strokeSize
);
[
all
...]
Completed in 160 milliseconds