Searched defs:kPointCount (Results 1 - 10 of 10) sorted by relevance

/external/skia/tests/
H A DPathOpsTestCommon.h16 static const int kPointCount = 3; member in struct:QuadPts
17 SkDPoint fPts[kPointCount];
26 static const int kPointCount = 4; member in struct:CubicPts
27 SkDPoint fPts[kPointCount];
/external/skqp/tests/
H A DPathOpsTestCommon.h16 static const int kPointCount = 3; member in struct:QuadPts
17 SkDPoint fPts[kPointCount];
26 static const int kPointCount = 4; member in struct:CubicPts
27 SkDPoint fPts[kPointCount];
/external/skia/src/pathops/
H A DSkPathOpsQuad.h22 static const int kPointCount = 3; member in struct:SkDQuad
23 static const int kPointLast = kPointCount - 1;
26 SkDPoint fPts[kPointCount];
52 const SkDQuad& set(const SkPoint pts[kPointCount]
61 const SkDPoint& operator[](int n) const { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
62 SkDPoint& operator[](int n) { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
92 static SkDQuad SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
98 static SkDPoint SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& c,
H A DSkPathOpsConic.h15 static const int kPointCount = 3; member in struct:SkDConic
16 static const int kPointLast = kPointCount - 1;
48 const SkDConic& set(const SkPoint pts[kPointCount], SkScalar weight
107 static SkDConic SubDivide(const SkPoint a[kPointCount], SkScalar weight, double t1, double t2) {
116 static SkDPoint SubDivide(const SkPoint pts[kPointCount], SkScalar weight,
H A DSkPathOpsCubic.h17 static const int kPointCount = 4; member in struct:SkDCubic
18 static const int kPointLast = kPointCount - 1;
42 const SkDPoint& operator[](int n) const { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
43 SkDPoint& operator[](int n) { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
51 int convexHull(char order[kPointCount]) const;
67 static int FindInflections(const SkPoint a[kPointCount], double tValues[2]) {
85 void otherPts(int index, const SkDPoint* o1Pts[kPointCount - 1]) const;
106 const SkDCubic& set(const SkPoint pts[kPointCount]
118 static SkDCubic SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
125 static void SubDivide(const SkPoint pts[kPointCount], cons
[all...]
/external/skqp/src/pathops/
H A DSkPathOpsQuad.h22 static const int kPointCount = 3; member in struct:SkDQuad
23 static const int kPointLast = kPointCount - 1;
26 SkDPoint fPts[kPointCount];
52 const SkDQuad& set(const SkPoint pts[kPointCount]
61 const SkDPoint& operator[](int n) const { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
62 SkDPoint& operator[](int n) { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
92 static SkDQuad SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
98 static SkDPoint SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& c,
H A DSkPathOpsConic.h15 static const int kPointCount = 3; member in struct:SkDConic
16 static const int kPointLast = kPointCount - 1;
48 const SkDConic& set(const SkPoint pts[kPointCount], SkScalar weight
107 static SkDConic SubDivide(const SkPoint a[kPointCount], SkScalar weight, double t1, double t2) {
116 static SkDPoint SubDivide(const SkPoint pts[kPointCount], SkScalar weight,
H A DSkPathOpsCubic.h17 static const int kPointCount = 4; member in struct:SkDCubic
18 static const int kPointLast = kPointCount - 1;
42 const SkDPoint& operator[](int n) const { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
43 SkDPoint& operator[](int n) { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; }
51 int convexHull(char order[kPointCount]) const;
67 static int FindInflections(const SkPoint a[kPointCount], double tValues[2]) {
85 void otherPts(int index, const SkDPoint* o1Pts[kPointCount - 1]) const;
106 const SkDCubic& set(const SkPoint pts[kPointCount]
118 static SkDCubic SubDivide(const SkPoint a[kPointCount], double t1, double t2) {
125 static void SubDivide(const SkPoint pts[kPointCount], cons
[all...]
/external/skia/src/core/
H A DSkGeometry.h446 kPointCount = 1 + 2 * kQuadCount, enumerator in enum:SkAutoConicToQuads::__anon20666
448 SkAutoSTMalloc<kPointCount, SkPoint> fStorage;
/external/skqp/src/core/
H A DSkGeometry.h446 kPointCount = 1 + 2 * kQuadCount, enumerator in enum:SkAutoConicToQuads::__anon21334
448 SkAutoSTMalloc<kPointCount, SkPoint> fStorage;

Completed in 246 milliseconds