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

  /external/skia/src/gpu/
GrFontScaler.h 22 class GrFontDescKey : public SkRefCnt {
24 SK_DECLARE_INST_COUNT(GrFontDescKey)
28 explicit GrFontDescKey(const SkDescriptor& desc);
29 virtual ~GrFontDescKey();
33 bool operator<(const GrFontDescKey& rh) const {
36 bool operator==(const GrFontDescKey& rh) const {
42 bool lt(const GrFontDescKey& rh) const;
43 bool eq(const GrFontDescKey& rh) const;
68 const GrFontDescKey* getKey();
81 GrFontDescKey* fKey
    [all...]
GrFontScaler.cpp 18 GrFontDescKey::GrFontDescKey(const SkDescriptor& desc) : fHash(desc.getChecksum()) {
28 GrFontDescKey::~GrFontDescKey() {
34 bool GrFontDescKey::lt(const GrFontDescKey& rh) const {
46 bool GrFontDescKey::eq(const GrFontDescKey& rh) const {
79 const GrFontDescKey* GrFontScaler::getKey() {
81 fKey = SkNEW_ARGS(GrFontDescKey, (fStrike->getDescriptor()))
    [all...]

Completed in 35 milliseconds