diff options
Diffstat (limited to 'src/gpu/GrTextureProxy.cpp')
-rw-r--r-- | src/gpu/GrTextureProxy.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gpu/GrTextureProxy.cpp b/src/gpu/GrTextureProxy.cpp index 3362ec81d4..72b810620d 100644 --- a/src/gpu/GrTextureProxy.cpp +++ b/src/gpu/GrTextureProxy.cpp @@ -26,10 +26,10 @@ GrTextureProxy::GrTextureProxy(const GrSurfaceDesc& srcDesc, SkBackingFit fit, S } // Lazy-callback version -GrTextureProxy::GrTextureProxy(LazyInstantiateCallback&& callback, const GrSurfaceDesc& desc, - GrMipMapped mipMapped, SkBackingFit fit, SkBudgeted budgeted, - uint32_t flags) - : INHERITED(std::move(callback), desc, fit, budgeted, flags) +GrTextureProxy::GrTextureProxy(LazyInstantiateCallback&& callback, LazyInstantiationType lazyType, + const GrSurfaceDesc& desc, GrMipMapped mipMapped, SkBackingFit fit, + SkBudgeted budgeted, uint32_t flags) + : INHERITED(std::move(callback), lazyType, desc, fit, budgeted, flags) , fMipMapped(mipMapped) , fMipColorMode(SkDestinationSurfaceColorMode::kLegacy) , fProxyProvider(nullptr) |