OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gXY
(Results
1 - 5
of
5
) sorted by null
/external/skia/samplecode/
SamplePathEffects.cpp
26
static const int
gXY
[] = {
35
path.moveTo(SkIntToScalar(
gXY
[0]), SkIntToScalar(
gXY
[1]));
36
for (unsigned i = 2; i < SK_ARRAY_COUNT(
gXY
); i += 2)
37
path.lineTo(SkIntToScalar(
gXY
[i]), SkIntToScalar(
gXY
[i+1]));
56
path.moveTo(SkIntToScalar(
gXY
[0]), SkIntToScalar(
gXY
[1]));
57
for (unsigned i = 2; i < SK_ARRAY_COUNT(
gXY
); i += 2)
58
path.lineTo(SkIntToScalar(
gXY
[i]), SkIntToScalar(gXY[i+1]))
[
all
...]
SampleAll.cpp
602
static const int
gXY
[] = { 1, 0, 0, -1, 2, -1, 3, 0, 2, 1, 0, 1 };
605
path.moveTo(SkIntToScalar(
gXY
[0]), SkIntToScalar(
gXY
[1]));
606
for (unsigned i = 2; i < SK_ARRAY_COUNT(
gXY
); i += 2)
607
path.lineTo(SkIntToScalar(
gXY
[i]), SkIntToScalar(
gXY
[i+1]));
SampleSlides.cpp
61
static const int
gXY
[] = {
73
path.moveTo(SkIntToScalar(
gXY
[0]), SkIntToScalar(
gXY
[1]));
74
for (unsigned i = 2; i < SK_ARRAY_COUNT(
gXY
); i += 2)
75
path.lineTo(SkIntToScalar(
gXY
[i]), SkIntToScalar(
gXY
[i+1]));
/external/skia/gm/
patheffects.cpp
53
static const int
gXY
[] = {
65
path.moveTo(SkIntToScalar(
gXY
[0]), SkIntToScalar(
gXY
[1]));
66
for (unsigned i = 2; i < SK_ARRAY_COUNT(
gXY
); i += 2)
67
path.lineTo(SkIntToScalar(
gXY
[i]), SkIntToScalar(
gXY
[i+1]));
/external/skia/tests/
PathCoverageTest.cpp
90
static const int
gXY
[] = {
149
one_d_pe(
gXY
, SK_ARRAY_COUNT(
gXY
), reporter);
Completed in 86 milliseconds