Home
last modified time | relevance | path

Searched refs:SkVerticesPriv (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/src/core/
DSkVerticesPriv.h21 class SkVerticesPriv {
38 SkVerticesPriv(const SkVerticesPriv&) = default;
44 explicit SkVerticesPriv(SkVertices* vertices) : fVertices(vertices) {} in SkVerticesPriv() function
45 SkVerticesPriv& operator=(const SkVerticesPriv&) = delete;
48 const SkVerticesPriv* operator&() const = delete;
49 SkVerticesPriv* operator&() = delete;
56 inline SkVerticesPriv SkVertices::priv() { return SkVerticesPriv(this); } in priv()
58 inline const SkVerticesPriv SkVertices::priv() const { // NOLINT(readability-const-return-type) in priv()
59 return SkVerticesPriv(const_cast<SkVertices*>(this)); in priv()
DSkVertices.cpp239 void SkVerticesPriv::encode(SkWriteBuffer& buffer) const { in encode()
266 sk_sp<SkVertices> SkVerticesPriv::Decode(SkReadBuffer& buffer) { in Decode()
DSkDraw_vertices.cpp312 SkVerticesPriv info(vertices->priv()); in drawFixedVertices()
517 SkVerticesPriv info(vertices->priv()); in drawVertices()
DBUILD.bazel384 "SkVerticesPriv.h",
DSkPictureData.cpp441 new_array_from_buffer(buffer, size, fVertices, SkVerticesPriv::Decode); in parseBufferTag()
/third_party/skia/include/core/
DSkVertices.h17 class SkVerticesPriv; variable
90 friend class SkVerticesPriv; variable
100 SkVerticesPriv priv();
101 const SkVerticesPriv priv() const; // NOLINT(readability-const-return-type)
106 friend class SkVerticesPriv; variable
/third_party/skia/tests/
DVerticesTest.cpp19 SkVerticesPriv v0(vert0->priv()), v1(vert1->priv()); in equal()
69 sk_sp<SkVertices> v1 = SkVerticesPriv::Decode(reader); in self_test()
/third_party/skia/src/gpu/ops/
DDrawVerticesOp.cpp315 SkVerticesPriv info(vertices->priv()); in DrawVerticesOpImpl()
432 SkVerticesPriv info(mesh.fVertices->priv()); in onPrepareDraws()
/third_party/skia/src/gpu/v1/
DDevice.cpp817 SkVerticesPriv info(vertices->priv()); in drawVertices()