diff options
Diffstat (limited to 'src/gpu/GrOnFlushResourceProvider.cpp')
-rw-r--r-- | src/gpu/GrOnFlushResourceProvider.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gpu/GrOnFlushResourceProvider.cpp b/src/gpu/GrOnFlushResourceProvider.cpp index 8de827c5b5..ba80631ad1 100644 --- a/src/gpu/GrOnFlushResourceProvider.cpp +++ b/src/gpu/GrOnFlushResourceProvider.cpp @@ -82,6 +82,12 @@ sk_sp<GrRenderTargetContext> GrOnFlushResourceProvider::makeRenderTargetContext( return renderTargetContext; } +bool GrOnFlushResourceProvider::instatiateProxy(GrSurfaceProxy* proxy) { + auto resourceProvider = fDrawingMgr->getContext()->contextPriv().resourceProvider(); + + return proxy->instantiate(resourceProvider); +} + sk_sp<GrBuffer> GrOnFlushResourceProvider::makeBuffer(GrBufferType intendedType, size_t size, const void* data) { auto resourceProvider = fDrawingMgr->getContext()->contextPriv().resourceProvider(); |