OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pointsLeft
(Results
1 - 3
of
3
) sorted by null
/external/skia/src/gpu/
GrPathUtils.h
40
uint32_t
pointsLeft
);
52
uint32_t
pointsLeft
);
GrPathUtils.cpp
75
uint32_t
pointsLeft
) {
76
if (
pointsLeft
< 2 ||
89
pointsLeft
>>= 1;
90
uint32_t a = generateQuadraticPoints(p0, q[0], r, tolSqd, points,
pointsLeft
);
91
uint32_t b = generateQuadraticPoints(r, q[1], p2, tolSqd, points,
pointsLeft
);
132
uint32_t
pointsLeft
) {
133
if (
pointsLeft
< 2 ||
150
pointsLeft
>>= 1;
151
uint32_t a = generateCubicPoints(p0, q[0], r[0], s, tolSqd, points,
pointsLeft
);
152
uint32_t b = generateCubicPoints(s, r[1], q[2], p3, tolSqd, points,
pointsLeft
);
[
all
...]
GrTessellator.cpp
486
int
pointsLeft
,
489
if (
pointsLeft
< 2 || d < tolSqd || !SkScalarIsFinite(d)) {
499
pointsLeft
>>= 1;
500
prev = generate_quadratic_points(p0, q[0], r, tolSqd, prev, head,
pointsLeft
, alloc);
501
prev = generate_quadratic_points(r, q[1], p2, tolSqd, prev, head,
pointsLeft
, alloc);
512
int
pointsLeft
,
516
if (
pointsLeft
< 2 || (d1 < tolSqd && d2 < tolSqd) ||
530
pointsLeft
>>= 1;
531
prev = generate_cubic_points(p0, q[0], r[0], s, tolSqd, prev, head,
pointsLeft
, alloc);
532
prev = generate_cubic_points(s, r[1], q[2], p3, tolSqd, prev, head,
pointsLeft
, alloc)
[
all
...]
Completed in 452 milliseconds