• Home
  • Raw
  • Download

Lines Matching refs:fContext

35     uint32_t contextID() const { return fContext->contextID(); }  in contextID()
37 bool matches(GrContext_Base* candidate) const { return fContext->matches(candidate); } in matches()
39 const GrContextOptions& options() const { return fContext->options(); } in options()
41 const GrCaps* caps() const { return fContext->caps(); } in caps()
46 GrImageContext* asImageContext() { return fContext->asImageContext(); } in asImageContext()
47 GrRecordingContext* asRecordingContext() { return fContext->asRecordingContext(); } in asRecordingContext()
48 GrContext* asDirectContext() { return fContext->asDirectContext(); } in asDirectContext()
51 GrProxyProvider* proxyProvider() { return fContext->proxyProvider(); } in proxyProvider()
52 const GrProxyProvider* proxyProvider() const { return fContext->proxyProvider(); } in proxyProvider()
54 bool abandoned() const { return fContext->abandoned(); } in abandoned()
57 SkDEBUGCODE(GrSingleOwner* singleOwner() const { return fContext->singleOwner(); } ) in SkDEBUGCODE()
60 GrDrawingManager* drawingManager() { return fContext->drawingManager(); }
63 GrOpMemoryPool* opMemoryPool() { return fContext->opMemoryPool(); } in opMemoryPool()
65 GrStrikeCache* getGrStrikeCache() { return fContext->getGrStrikeCache(); } in getGrStrikeCache()
66 GrTextBlobCache* getTextBlobCache() { return fContext->getTextBlobCache(); } in getTextBlobCache()
131 GrAuditTrail* auditTrail() { return fContext->auditTrail(); } in auditTrail()
207 SkTaskGroup* getTaskGroup() { return fContext->fTaskGroup.get(); } in getTaskGroup()
209 GrResourceProvider* resourceProvider() { return fContext->fResourceProvider; } in resourceProvider()
210 const GrResourceProvider* resourceProvider() const { return fContext->fResourceProvider; } in resourceProvider()
212 GrResourceCache* getResourceCache() { return fContext->fResourceCache; } in getResourceCache()
214 GrGpu* getGpu() { return fContext->fGpu.get(); } in getGpu()
215 const GrGpu* getGpu() const { return fContext->fGpu.get(); } in getGpu()
219 return fContext->onGetAtlasManager(); in getAtlasManager()
225 GrContextOptions::PersistentCache* getPersistentCache() { return fContext->fPersistentCache; } in getPersistentCache()
227 return fContext->fShaderErrorHandler; in getShaderErrorHandler()
273 explicit GrContextPriv(GrContext* context) : fContext(context) {} in GrContextPriv()
281 GrContext* fContext; variable