OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fCurrPoint
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkEdgeClipper.cpp
198
fCurrPoint
= fPoints;
213
SkASSERT(
fCurrPoint
- fPoints <= kMaxPoints);
219
fCurrPoint
= fPoints;
406
fCurrPoint
= fPoints;
421
SkASSERT(
fCurrPoint
- fPoints <= kMaxPoints);
427
fCurrPoint
= fPoints;
441
fCurrPoint
[0].set(x, y0);
442
fCurrPoint
[1].set(x, y1);
443
fCurrPoint
+= 2;
450
fCurrPoint
[0] = pts[2]
[
all
...]
SkEdgeClipper.h
26
SkPoint*
fCurrPoint
;
SkQuadClipper.h
45
SkPoint*
fCurrPoint
;
/external/skia/src/core/
SkEdgeClipper.cpp
198
fCurrPoint
= fPoints;
213
SkASSERT(
fCurrPoint
- fPoints <= kMaxPoints);
219
fCurrPoint
= fPoints;
406
fCurrPoint
= fPoints;
421
SkASSERT(
fCurrPoint
- fPoints <= kMaxPoints);
427
fCurrPoint
= fPoints;
441
fCurrPoint
[0].set(x, y0);
442
fCurrPoint
[1].set(x, y1);
443
fCurrPoint
+= 2;
450
fCurrPoint
[0] = pts[2]
[
all
...]
SkEdgeClipper.h
26
SkPoint*
fCurrPoint
;
SkQuadClipper.h
45
SkPoint*
fCurrPoint
;
/external/skia/bench/
PathBench.cpp
254
fCurrPoint
= 0;
263
path->moveTo(fPoints[(
fCurrPoint
++) & (kNumPoints - 1)]);
266
path->lineTo(fPoints[(
fCurrPoint
++) & (kNumPoints - 1)]);
269
path->quadTo(fPoints[(
fCurrPoint
+ 0) & (kNumPoints - 1)],
270
fPoints[(
fCurrPoint
+ 1) & (kNumPoints - 1)]);
271
fCurrPoint
+= 2;
274
path->conicTo(fPoints[(
fCurrPoint
+ 0) & (kNumPoints - 1)],
275
fPoints[(
fCurrPoint
+ 1) & (kNumPoints - 1)],
277
fCurrPoint
+= 2;
280
path->cubicTo(fPoints[(
fCurrPoint
+ 0) & (kNumPoints - 1)]
[
all
...]
Completed in 91 milliseconds