Lines Matching refs:fContext
33 uint32_t contextID() const { return fContext->contextID(); } in contextID()
44 const GrCaps* caps() const { return fContext->fCaps.get(); } in caps()
49 GrDrawingManager* drawingManager() { return fContext->fDrawingManager.get(); } in drawingManager()
91 bool disableGpuYUVConversion() const { return fContext->fDisableGpuYUVConversion; } in disableGpuYUVConversion()
92 bool sharpenMipmappedTextures() const { return fContext->fSharpenMipmappedTextures; } in sharpenMipmappedTextures()
193 SkTaskGroup* getTaskGroup() { return fContext->fTaskGroup.get(); } in getTaskGroup()
195 GrProxyProvider* proxyProvider() { return fContext->fProxyProvider; } in proxyProvider()
196 const GrProxyProvider* proxyProvider() const { return fContext->fProxyProvider; } in proxyProvider()
198 GrResourceProvider* resourceProvider() { return fContext->fResourceProvider; } in resourceProvider()
199 const GrResourceProvider* resourceProvider() const { return fContext->fResourceProvider; } in resourceProvider()
201 GrResourceCache* getResourceCache() { return fContext->fResourceCache; } in getResourceCache()
203 GrGpu* getGpu() { return fContext->fGpu.get(); } in getGpu()
204 const GrGpu* getGpu() const { return fContext->fGpu.get(); } in getGpu()
206 GrStrikeCache* getGlyphCache() { return fContext->fGlyphCache; } in getGlyphCache()
207 GrTextBlobCache* getTextBlobCache() { return fContext->fTextBlobCache.get(); } in getTextBlobCache()
211 return fContext->onGetAtlasManager(); in getAtlasManager()
284 GrAuditTrail* getAuditTrail() { return &fContext->fAuditTrail; } in getAuditTrail()
286 GrContextOptions::PersistentCache* getPersistentCache() { return fContext->fPersistentCache; } in getPersistentCache()
291 SkDEBUGCODE(GrSingleOwner* debugSingleOwner() const { return &fContext->fSingleOwner; } ) in SkDEBUGCODE()
294 explicit GrContextPriv(GrContext* context) : fContext(context) {}
302 GrContext* fContext; variable