Lines Matching refs:starPoly

112     SkTDArray<SkPoint> starPoly;  in DEF_TEST()  local
113 *starPoly.push() = SkPoint::Make(0.0f, -50.0f); in DEF_TEST()
114 *starPoly.push() = SkPoint::Make(14.43f, -25.0f); in DEF_TEST()
115 *starPoly.push() = SkPoint::Make(43.30f, -25.0f); in DEF_TEST()
116 *starPoly.push() = SkPoint::Make(28.86f, 0.0f); in DEF_TEST()
117 *starPoly.push() = SkPoint::Make(43.30f, 25.0f); in DEF_TEST()
118 *starPoly.push() = SkPoint::Make(14.43f, 25.0f); in DEF_TEST()
119 *starPoly.push() = SkPoint::Make(0.0f, 50.0f); in DEF_TEST()
120 *starPoly.push() = SkPoint::Make(-14.43f, 25.0f); in DEF_TEST()
121 *starPoly.push() = SkPoint::Make(-43.30f, 25.0f); in DEF_TEST()
122 *starPoly.push() = SkPoint::Make(-28.86f, 0.0f); in DEF_TEST()
123 *starPoly.push() = SkPoint::Make(-43.30f, -25.0f); in DEF_TEST()
124 *starPoly.push() = SkPoint::Make(-14.43f, -25.0f); in DEF_TEST()
125 REPORTER_ASSERT(reporter, SkIsSimplePolygon(starPoly.begin(), starPoly.count())); in DEF_TEST()
128 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), 0.1f, in DEF_TEST()
133 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), 5.665f, in DEF_TEST()
138 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), 28, in DEF_TEST()
144 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), 28.866f, in DEF_TEST()
149 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), 50.5f, in DEF_TEST()
154 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), -0.1f, in DEF_TEST()
159 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), -5.6665f, in DEF_TEST()
164 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), -50, in DEF_TEST()
169 result = SkOffsetSimplePolygon(starPoly.begin(), starPoly.count(), -100, in DEF_TEST()