Lines Matching refs:fContext
19 uint32_t contextID() const { return fContext->contextID(); } in contextID()
21 bool matches(GrContext_Base* candidate) const { return fContext->matches(candidate); } in matches()
23 const GrContextOptions& options() const { return fContext->options(); } in options()
26 return fContext->explicitlyAllocateGPUResources(); in explicitlyAllocateGPUResources()
29 const GrCaps* caps() const { return fContext->caps(); } in caps()
34 GrImageContext* asImageContext() { return fContext->asImageContext(); } in asImageContext()
35 GrRecordingContext* asRecordingContext() { return fContext->asRecordingContext(); } in asRecordingContext()
36 GrContext* asDirectContext() { return fContext->asDirectContext(); } in asDirectContext()
39 GrProxyProvider* proxyProvider() { return fContext->proxyProvider(); } in proxyProvider()
40 const GrProxyProvider* proxyProvider() const { return fContext->proxyProvider(); } in proxyProvider()
42 bool abandoned() const { return fContext->abandoned(); } in abandoned()
45 SkDEBUGCODE(GrSingleOwner* singleOwner() const { return fContext->singleOwner(); } ) in SkDEBUGCODE()
48 GrDrawingManager* drawingManager() { return fContext->drawingManager(); }
51 GrOpMemoryPool* opMemoryPool() { return fContext->opMemoryPool(); } in opMemoryPool()
53 GrStrikeCache* getGrStrikeCache() { return fContext->getGrStrikeCache(); } in getGrStrikeCache()
54 GrTextBlobCache* getTextBlobCache() { return fContext->getTextBlobCache(); } in getTextBlobCache()
112 GrAuditTrail* auditTrail() { return fContext->auditTrail(); } in auditTrail()
119 explicit GrRecordingContextPriv(GrRecordingContext* context) : fContext(context) {} in GrRecordingContextPriv()
127 GrRecordingContext* fContext; variable