Home
last modified time | relevance | path

Searched refs:chops (Results 1 – 25 of 27) sorted by relevance

12

/external/skia/src/gpu/tessellate/
DGrStrokeFixedCountTessellator.cpp64 SkPoint chops[5]; in quadraticTo() local
65 SkChopQuadAtHalf(p, chops); in quadraticTo()
66 this->quadraticTo(chops); in quadraticTo()
67 this->quadraticTo(chops + 2); in quadraticTo()
82 SkConic chops[2]; in conicTo() local
83 if (SkConic(p, w).chopAt(.5f, chops)) { in conicTo()
84 this->conicTo(chops[0].fPts, chops[0].fW); in conicTo()
85 this->conicTo(chops[1].fPts, chops[1].fW); in conicTo()
100 SkPoint chops[7]; in cubicConvex180To() local
101 SkChopCubicAtHalf(p, chops); in cubicConvex180To()
[all …]
DGrStrokeHardwareTessellator.cpp174 SkPoint chops[10]; in writeCubicConvex180PatchesTo() local
182 SkChopCubicAt(p, chops, chopT[0]); in writeCubicConvex180PatchesTo()
185 chops[2] = chops[4] = chops[3]; in writeCubicConvex180PatchesTo()
187 this->internalCubicConvex180PatchesTo(fStrokeJoinType, chops); in writeCubicConvex180PatchesTo()
188 this->internalCubicConvex180PatchesTo(JoinType::kBowtie, chops + 3); in writeCubicConvex180PatchesTo()
191 SkChopCubicAt(p, chops, chopT[0], chopT[1]); in writeCubicConvex180PatchesTo()
194 this->writeLineTo(chops[0], chops[3]); in writeCubicConvex180PatchesTo()
195 this->writeLineTo(JoinType::kBowtie, chops[3], chops[6]); in writeCubicConvex180PatchesTo()
196 this->writeLineTo(JoinType::kBowtie, chops[6], chops[9]); in writeCubicConvex180PatchesTo()
199 this->internalCubicConvex180PatchesTo(fStrokeJoinType, chops); in writeCubicConvex180PatchesTo()
[all …]
DGrStrokeIndirectTessellator.cpp138 SkPoint chops[7]; in countChoppedCubic() local
139 SkChopCubicAt(pts, chops, chopT); in countChoppedCubic()
140 this->countCubic(chops, lastControlPoint, resolveLevelPtr); in countChoppedCubic()
141 this->countCubic(chops + 3, chops[3], resolveLevelPtr + 1); in countChoppedCubic()
/external/skqp/src/gpu/ccpr/
DGrCCFillGeometry.cpp251 SkSTArray<4, float>* chops) { in find_chops_around_inflection_points() argument
252 SkASSERT(chops->empty()); in find_chops_around_inflection_points()
307 pts.store(chops->push_back_n(2)); in find_chops_around_inflection_points()
314 pts.store(chops->push_back_n(2)); in find_chops_around_inflection_points()
336 SkSTArray<4, float>* chops) { in find_chops_around_loop_intersection() argument
337 SkASSERT(chops->empty()); in find_chops_around_loop_intersection()
433 chops->push_back(0); in find_chops_around_loop_intersection()
435 chops->push_back(A + B + D[i]); in find_chops_around_loop_intersection()
437 chops->push_back(1); in find_chops_around_loop_intersection()
460 chops->push_back_n(2, &roots[i]); in find_chops_around_loop_intersection()
[all …]
DGrCCFillGeometry.h100 const Sk2f& p3, const float chops[], int numChops, float localT0 = 0,
/external/angle/infra/config/generated/
Dcr-buildbucket.cfg14 identity: "user:angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
28 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
45 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
62 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
79 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
96 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
114 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
132 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
150 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
168 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
[all …]
Drealms.cfg49 principals: "user:chrome-gpu-gold@chops-service-accounts.iam.gserviceaccount.com"
50 principals: "user:chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
62 principals: "user:angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
66 principals: "user:angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
79 principals: "user:angle-try-builder@chops-service-accounts.iam.gserviceaccount.com"
/external/skia/tests/
DGrPathUtilsTest.cpp39 SkPoint chops[10]; in check_cubic_convex_180() local
40 SkChopCubicAt(p, chops, convex180T, convex180N); in check_cubic_convex_180()
43 float rads = SkMeasureNonInflectCubicRotation(chops + i*3); in check_cubic_convex_180()
57 SkMeasureNonInflectCubicRotation(chops), SK_ScalarPI)); in check_cubic_convex_180()
59 SkMeasureNonInflectCubicRotation(chops + 3), totalRotation - SK_ScalarPI)); in check_cubic_convex_180()
DPathOpsConicIntersectionTest.cpp143 const int chops = 2; in writeDPng() local
144 for (int tIndex = 0; tIndex < chops; ++tIndex) { in writeDPng()
145 SkDConic chopped = dConic.subDivide(tIndex / (double) chops, in writeDPng()
146 (tIndex + 1) / (double) chops); in writeDPng()
DGeometryTest.cpp575 SkPoint chops[10]; in test_chop_at_midtangent() local
578 int n = SkChopCubicAtInflections(serp.data(), chops); in test_chop_at_midtangent()
580 test_chop_cubic_at_midtangent(reporter, chops + i*3, SkCubicType::kSerpentine); in test_chop_at_midtangent()
608 int n = SkChopCubicAtInflections(kExactCuspAtInf, chops); in test_chop_at_midtangent()
610 test_chop_cubic_at_midtangent(reporter, chops + i*3, SkCubicType::kCuspAtInfinity); in test_chop_at_midtangent()
DStrokeIndirectTest.cpp289 SkPoint chops[10]; in verifyResolveLevels() local
362 SkChopCubicAt(pts, chops, T, n); in verifyResolveLevels()
375 SkPoint* p = chops + i*3; in verifyResolveLevels()
/external/angle/infra/specs/
Dmixins.pyl21 …'chrome-gpu-gold-service-account': { 'swarming': { 'service_account': 'chrome-gpu-gold@chops-servi…
22 …'chromium-tester-service-account': { 'swarming': { 'service_account': 'chromium-tester@chops-servi…
/external/skqp/tests/
DPathOpsConicIntersectionTest.cpp144 const int chops = 2; in writeDPng() local
145 for (int tIndex = 0; tIndex < chops; ++tIndex) { in writeDPng()
146 SkDConic chopped = dConic.subDivide(tIndex / (double) chops, in writeDPng()
147 (tIndex + 1) / (double) chops); in writeDPng()
/external/skqp/src/gpu/
DGrPathUtils.cpp835 SkSTArray<2, SkScalar> chops; in chopCubicAtLoopIntersection() local
847 chops.push_back(t0); in chopCubicAtLoopIntersection()
851 chops.push_back(t1); in chopCubicAtLoopIntersection()
852 *loopIndex = chops.count() - 1; in chopCubicAtLoopIntersection()
857 SkChopCubicAt(src, dst, chops.begin(), chops.count()); in chopCubicAtLoopIntersection()
858 return chops.count() + 1; in chopCubicAtLoopIntersection()
/external/fonttools/Doc/source/cu2qu/
Dindex.rst13 Instead, this method chops the cubic curve into multiple segments before
/external/openscreen/infra/config/global/
Dcr-buildbucket.cfg211 service_account: "openscreen-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
329 service_account: "openscreen-try-builder@chops-service-accounts.iam.gserviceaccount.com"
/external/skqp/site/user/api/
Dskpaint_overview.md186 * SkDiscretePathEffect: This path effect chops a path into discrete
/external/skia/site/docs/user/api/
Dskpaint_overview.md193 * SkDiscretePathEffect: This path effect chops a path into discrete
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst59 When using :class:`ProcessPoolExecutor`, this method chops *iterables*
Dmultiprocessing.rst2198 This method chops the iterable into a number of chunks which it submits to
/external/libogg/doc/
Drfc3533.txt443 encapsulation process chops up the packets into segments. The
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1842 This method chops the iterable into a number of chunks which it submits to
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/
Dwords.shakespeare.txt.gz1a 2A 3Aaron 4AARON 5abaissiez 6abandon 7abandoned 8abase 9Abase 10 ...
Dospd.txt.gz
/external/jline/src/src/test/resources/jline/example/
Denglish.gz

12