Home | History | Annotate | Download | only in gpu

Lines Matching defs:fResource

26     void setUniqueKey(const GrUniqueKey& key) { fResource->setUniqueKey(key); }
30 void removeUniqueKey() { fResource->removeUniqueKey(); }
36 void makeBudgeted() { fResource->makeBudgeted(); }
42 void makeUnbudgeted() { fResource->makeUnbudgeted(); }
48 bool ret = GrGpuResource::kCached_LifeCycle == fResource->fLifeCycle;
49 SkASSERT(ret || !fResource->getUniqueKey().isValid());
58 const GrScratchKey& getScratchKey() const { return fResource->fScratchKey; }
64 void removeScratchKey() const { fResource->removeScratchKey(); }
67 ResourcePriv(GrGpuResource* resource) : fResource(resource) { }
68 ResourcePriv(const ResourcePriv& that) : fResource(that.fResource) {}
75 GrGpuResource* fResource;