OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clipA
(Results
1 - 5
of
5
) sorted by null
/external/skia/gm/
complexclip.cpp
68
SkPath
clipA
;
69
clipA
.moveTo(SkIntToScalar(10), SkIntToScalar(20));
70
clipA
.lineTo(SkIntToScalar(165), SkIntToScalar(22));
71
clipA
.lineTo(SkIntToScalar(70), SkIntToScalar(105));
72
clipA
.lineTo(SkIntToScalar(165), SkIntToScalar(177));
73
clipA
.lineTo(SkIntToScalar(-5), SkIntToScalar(180));
74
clipA
.close();
124
this->drawHairlines(canvas, path,
clipA
, clipB);
130
clipA
.setFillType(doInvA ? SkPath::kInverseEvenOdd_FillType :
134
canvas->clipPath(
clipA
, SkRegion::kIntersect_Op, fDoAAClip)
[
all
...]
/external/skia/samplecode/
SampleComplexClip.cpp
51
SkPath
clipA
;
52
clipA
.moveTo(SkIntToScalar(10), SkIntToScalar(20));
53
clipA
.lineTo(SkIntToScalar(165), SkIntToScalar(22));
54
clipA
.lineTo(SkIntToScalar(70), SkIntToScalar(105));
55
clipA
.lineTo(SkIntToScalar(165), SkIntToScalar(177));
56
clipA
.lineTo(SkIntToScalar(-5), SkIntToScalar(180));
57
clipA
.close();
78
canvas->drawPath(
clipA
, paint);
107
clipA
.setFillType(invA ? SkPath::kInverseEvenOdd_FillType :
109
canvas->clipPath(
clipA
);
[
all
...]
/external/skia/src/core/
SkAAClip.cpp
[
all
...]
/external/skia/tests/
ClipStackTest.cpp
326
SkPath
clipA
, clipB;
328
clipA
.addRoundRect(rectA, SkIntToScalar(5), SkIntToScalar(5));
329
clipA
.setFillType(SkPath::kInverseEvenOdd_FillType);
334
stack.clipDevPath(
clipA
, SkRegion::kReplace_Op, false);
[
all
...]
/external/dng_sdk/source/
dng_reference.cpp
1293
real32
clipA
= (real32) cameraWhite [0];
1316
A = Min_real32 (A,
clipA
);
1350
real32
clipA
= (real32) cameraWhite [0];
1378
A = Min_real32 (A,
clipA
);
[
all
...]
Completed in 341 milliseconds