• 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()
42 return fContext->explicitlyAllocateGPUResources(); in explicitlyAllocateGPUResources()
45 const GrCaps* caps() const { return fContext->caps(); } in caps()
50 GrImageContext* asImageContext() { return fContext->asImageContext(); } in asImageContext()
51 GrRecordingContext* asRecordingContext() { return fContext->asRecordingContext(); } in asRecordingContext()
52 GrContext* asDirectContext() { return fContext->asDirectContext(); } in asDirectContext()
55 GrProxyProvider* proxyProvider() { return fContext->proxyProvider(); } in proxyProvider()
56 const GrProxyProvider* proxyProvider() const { return fContext->proxyProvider(); } in proxyProvider()
58 bool abandoned() const { return fContext->abandoned(); } in abandoned()
61 SkDEBUGCODE(GrSingleOwner* singleOwner() const { return fContext->singleOwner(); } ) in SkDEBUGCODE()
64 GrDrawingManager* drawingManager() { return fContext->drawingManager(); }
67 GrOpMemoryPool* opMemoryPool() { return fContext->opMemoryPool(); } in opMemoryPool()
69 GrStrikeCache* getGrStrikeCache() { return fContext->getGrStrikeCache(); } in getGrStrikeCache()
70 GrTextBlobCache* getTextBlobCache() { return fContext->getTextBlobCache(); } in getTextBlobCache()
128 GrAuditTrail* auditTrail() { return fContext->auditTrail(); } in auditTrail()
259 SkTaskGroup* getTaskGroup() { return fContext->fTaskGroup.get(); } in getTaskGroup()
261 GrResourceProvider* resourceProvider() { return fContext->fResourceProvider; } in resourceProvider()
262 const GrResourceProvider* resourceProvider() const { return fContext->fResourceProvider; } in resourceProvider()
264 GrResourceCache* getResourceCache() { return fContext->fResourceCache; } in getResourceCache()
266 GrGpu* getGpu() { return fContext->fGpu.get(); } in getGpu()
267 const GrGpu* getGpu() const { return fContext->fGpu.get(); } in getGpu()
271 return fContext->onGetAtlasManager(); in getAtlasManager()
277 GrContextOptions::PersistentCache* getPersistentCache() { return fContext->fPersistentCache; } in getPersistentCache()
318 explicit GrContextPriv(GrContext* context) : fContext(context) {} in GrContextPriv()
326 GrContext* fContext; variable