HomeSort by relevance Sort by last modified time
    Searched refs:GrGlyph (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/skia/src/gpu/
GrTextStrike.h 17 #include "GrGlyph.h"
39 inline GrGlyph* getGlyph(GrGlyph::PackedID, GrFontScaler*);
42 bool glyphTooLargeForAtlas(GrGlyph*);
44 bool addGlyphToAtlas(GrGlyph*, GrFontScaler*);
65 SkTDynamicHash<GrGlyph, GrGlyph::PackedID> fCache;
67 GrTAllocPool<GrGlyph> fPool;
76 GrGlyph* generateGlyph(GrGlyph::PackedID packed, GrFontScaler* scaler)
    [all...]
GrFontScaler.cpp 88 bool GrFontScaler::getPackedGlyphBounds(GrGlyph::PackedID packed, SkIRect* bounds) {
89 const SkGlyph& glyph = fStrike->getGlyphIDMetrics(GrGlyph::UnpackID(packed),
90 GrGlyph::UnpackFixedX(packed),
91 GrGlyph::UnpackFixedY(packed));
97 bool GrFontScaler::getPackedGlyphDFBounds(GrGlyph::PackedID packed, SkIRect* bounds) {
98 const SkGlyph& glyph = fStrike->getGlyphIDMetrics(GrGlyph::UnpackID(packed),
99 GrGlyph::UnpackFixedX(packed),
100 GrGlyph::UnpackFixedY(packed));
133 bool GrFontScaler::getPackedGlyphImage(GrGlyph::PackedID packed,
136 const SkGlyph& glyph = fStrike->getGlyphIDMetrics(GrGlyph::UnpackID(packed)
    [all...]
GrTextStrike_impl.h 55 GrGlyph* GrTextStrike::getGlyph(GrGlyph::PackedID packed,
57 GrGlyph* glyph = fCache.find(packed);
GrTextStrike.cpp 226 We map a 32bit glyphID to a GrGlyph record, which in turn points to a
249 SkTDynamicHash<GrGlyph, GrGlyph::PackedID>::Iter iter(&fCache);
261 GrGlyph* GrTextStrike::generateGlyph(GrGlyph::PackedID packed,
274 GrGlyph* glyph = fPool.alloc();
281 SkTDynamicHash<GrGlyph, GrGlyph::PackedID>::Iter iter(&fCache);
292 bool GrTextStrike::glyphTooLargeForAtlas(GrGlyph* glyph) {
306 bool GrTextStrike::addGlyphToAtlas(GrGlyph* glyph, GrFontScaler* scaler)
    [all...]
GrBitmapTextContext.h 37 void drawPackedGlyph(GrGlyph::PackedID, SkFixed left, SkFixed top, GrFontScaler*);
GrDistanceFieldTextContext.h 46 void drawPackedGlyph(GrGlyph::PackedID, SkFixed left, SkFixed top, GrFontScaler*);
GrBitmapTextContext.cpp 256 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
330 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
363 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
386 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
409 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
424 void GrBitmapTextContext::drawPackedGlyph(GrGlyph::PackedID packed,
435 GrGlyph* glyph = fStrike->getGlyph(packed, scaler);
GrDistanceFieldTextContext.cpp 240 void GrDistanceFieldTextContext::drawPackedGlyph(GrGlyph::PackedID packed,
251 GrGlyph* glyph = fStrike->getGlyph(packed, scaler);
595 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
644 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
663 this->drawPackedGlyph(GrGlyph::Pack(glyph.getGlyphID(),
  /external/chromium_org/third_party/skia/include/gpu/
GrGlyph.h 23 struct GrGlyph {
32 void init(GrGlyph::PackedID packed, const SkIRect& bounds) {
77 static inline const GrGlyph::PackedID& GetKey(const GrGlyph& glyph) {
81 static inline uint32_t Hash(GrGlyph::PackedID key) {
GrFontScaler.h 11 #include "GrGlyph.h"
70 bool getPackedGlyphBounds(GrGlyph::PackedID, SkIRect* bounds);
71 bool getPackedGlyphImage(GrGlyph::PackedID, int width, int height,
73 bool getPackedGlyphDFBounds(GrGlyph::PackedID, SkIRect* bounds);
74 bool getPackedGlyphDFImage(GrGlyph::PackedID, int width, int height,

Completed in 383 milliseconds