HomeSort by relevance Sort by last modified time
    Searched defs:SkTextBlob (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/include/core/
SkTextBlob.h 19 /** \class SkTextBlob
21 SkTextBlob combines multiple text runs into an immutable, ref-counted structure.
23 class SK_API SkTextBlob : public SkRefCnt {
41 * Recreate an SkTextBlob that was serialized into a buffer.
44 * @return A new SkTextBlob representing the serialized data, or NULL if the buffer is
47 static const SkTextBlob* CreateFromBuffer(SkReadBuffer&);
60 RunIterator(const SkTextBlob* blob);
79 SkTextBlob(int runCount, const SkRect& bounds);
81 virtual ~SkTextBlob();
113 * Returns an immutable SkTextBlob for the current runs/glyphs. The builder is reset an
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTextBlob.cpp 8 #include "SkTextBlob.h"
17 // | SkTextBlob | RunRecord | Glyphs[] | Pos[] | RunRecord | Glyphs[] | Pos[] | ...
25 class SkTextBlob::RunRecord {
62 static size_t StorageSize(int glyphCount, SkTextBlob::GlyphPositioning positioning) {
64 return SkAlignPtr(sizeof(SkTextBlob::RunRecord)
69 static const RunRecord* First(const SkTextBlob* blob) {
110 SkTextBlob::SkTextBlob(int runCount, const SkRect& bounds)
115 SkTextBlob::~SkTextBlob() {
    [all...]

Completed in 206 milliseconds