Home
last modified time | relevance | path

Searched refs:SkZip (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/src/core/
DSkZip.h24 class SkZip {
34 constexpr Iterator(const SkZip* zip, size_t index) : fZip{zip}, fIndex{index} { } in Iterator()
46 const SkZip* const fZip = nullptr;
54 constexpr SkZip() : fPointers{nullify<Ts>...}, fSize{0} {} in SkZip() function
55 constexpr SkZip(size_t) = delete;
56 constexpr SkZip(size_t size, Ts*... ts) in SkZip() function
59 constexpr SkZip(const SkZip& that) = default;
60 constexpr SkZip& operator=(const SkZip &that) = default;
70 constexpr SkZip(const SkZip<Us...>& that) in SkZip() function
85 constexpr SkZip first(size_t n) const { in first()
[all …]
DSkGlyphBuffer.h25 void setSource(SkZip<const SkGlyphID, const SkPoint> source) { in setSource()
52 SkZip<const SkGlyphID, const SkPoint> flipRejectsToSource() { in flipRejectsToSource()
61 SkZip<const SkGlyphID, const SkPoint> source() const { return fSource; } in source()
66 SkSourceGlyphBuffer(const SkZip<const SkGlyphID, const SkPoint>& source) { in SkSourceGlyphBuffer()
73 SkZip<const SkGlyphID, const SkPoint> fSource;
77 SkZip<SkGlyphID, SkPoint> fRejects;
148 void startSource(const SkZip<const SkGlyphID, const SkPoint>& source);
152 const SkZip<const SkGlyphID, const SkPoint>& source,
171 const SkZip<const SkGlyphID, const SkPoint>& source,
178 SkZip<SkGlyphVariant, SkPoint> input() { in input()
[all …]
DSkGlyphBuffer.cpp28 void SkDrawableGlyphBuffer::startSource(const SkZip<const SkGlyphID, const SkPoint>& source) { in startSource()
44 const SkZip<const SkGlyphID, const SkPoint>& source, in startBitmapDevice()
62 SkZip<const SkGlyphID, const SkPoint> withMappedPos = in startBitmapDevice()
72 const SkZip<const SkGlyphID, const SkPoint>& source, in startGPUDevice()
106 : SkZip<SkGlyphVariant, SkPoint>{fInputSize, fMultiBuffer.get(), fPositions.get()}) { in dumpInput()
DSkGlyphRunPainter.h142 virtual void processDeviceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables,
145 virtual void processSourceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables,
149 virtual void processSourcePaths(const SkZip<SkGlyphVariant, SkPoint>& drawables,
153 virtual void processSourceSDFT(const SkZip<SkGlyphVariant, SkPoint>& drawables,
DSkGlyphRun.h43 SkZip<const SkGlyphID, const SkPoint> source() const { return fSource; } in source()
52 const SkZip<const SkGlyphID, const SkPoint> fSource;
DBUILD.bazel402 "SkZip.h",
/third_party/skia/src/gpu/text/
DGrTextBlob.h251 const SkZip<SkGlyphVariant, SkPoint>& drawables,
256 void processDeviceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables,
258 void processSourcePaths(const SkZip<SkGlyphVariant, SkPoint>& drawables,
261 void processSourceSDFT(const SkZip<SkGlyphVariant, SkPoint>& drawables,
267 void processSourceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables,
306 void processDeviceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables,
308 void processSourceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables,
311 void processSourcePaths(const SkZip<SkGlyphVariant, SkPoint>& drawables,
314 void processSourceSDFT(const SkZip<SkGlyphVariant, SkPoint>& drawables,
DGrTextBlob.cpp94 void fill_transformed_vertices_2D(SkZip<Quad, const GrGlyph*, const VertexData> quadData, in fill_transformed_vertices_2D()
118 void fill_transformed_vertices_3D(SkZip<Quad, const GrGlyph*, const VertexData> quadData, in fill_transformed_vertices_3D()
188 static GrSubRunOwner Make(const SkZip<SkGlyphVariant, SkPoint>& drawables,
275 GrSubRunOwner PathSubRun::Make(const SkZip<SkGlyphVariant, SkPoint>& drawables, in Make()
463 static GrSubRunOwner Make(const SkZip<SkGlyphVariant, SkPoint>& drawables,
529 GrSubRunOwner DirectMaskSubRun::Make(const SkZip<SkGlyphVariant, SkPoint>& drawables, in Make()
721 void direct_2D(SkZip<Mask2DVertex[4], in direct_2D()
747 void generalized_direct_2D(SkZip<Quad, const GrGlyph*, const VertexData> quadData, in generalized_direct_2D()
857 static GrSubRunOwner Make(const SkZip<SkGlyphVariant, SkPoint>& drawables,
925 GrSubRunOwner TransformedMaskSubRun::Make(const SkZip<SkGlyphVariant, SkPoint>& drawables, in Make()
[all …]
/third_party/skia/tests/
DUtilsTest.cpp348 DEF_TEST(SkZip, reporter) { in DEF_TEST() argument
356 SkZip<uint16_t, const float, int, int, int> in DEF_TEST()
461 SkZip<const uint16_t, const float, const int, int, int> cz = z; in DEF_TEST()
/third_party/skia/gn/
Dcore.gni427 "$_src/core/SkZip.h",