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

  /external/skia/include/gpu/
GrKey.h 16 class GrKey : public GrRefCnt {
20 explicit GrKey(Hash hash) : fHash(hash) {}
24 bool operator<(const GrKey& rh) const {
27 bool operator==(const GrKey& rh) const {
32 virtual bool lt(const GrKey& rh) const = 0;
33 virtual bool eq(const GrKey& rh) const = 0;
GrFontScaler.h 15 #include "GrKey.h"
28 virtual const GrKey* getKey() = 0;
SkGr.h 183 virtual const GrKey* getKey();
192 GrKey* fKey;
  /external/skia/src/gpu/
GrTextStrike.h 31 GrTextStrike(GrFontCache*, const GrKey* fontScalerKey, GrMaskFormat,
35 const GrKey* getFontScalerKey() const { return fFontScalerKey; }
57 const GrKey* fFontScalerKey;
SkGrFontScaler.cpp 15 class SkGrDescKey : public GrKey {
22 virtual bool lt(const GrKey& rh) const;
23 virtual bool eq(const GrKey& rh) const;
35 SkGrDescKey::SkGrDescKey(const SkDescriptor& desc) : GrKey(desc.getChecksum()) {
51 bool SkGrDescKey::lt(const GrKey& rh) const {
63 bool SkGrDescKey::eq(const GrKey& rh) const {
96 const GrKey* SkGrFontScaler::getKey() {
GrTextStrike_impl.h 30 const GrKey* fFontScalerKey;
GrTextStrike.cpp 123 GrTextStrike::GrTextStrike(GrFontCache* cache, const GrKey* key,

Completed in 1371 milliseconds