diff options
Diffstat (limited to 'include/private/GrTextureProxy.h')
-rw-r--r-- | include/private/GrTextureProxy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/private/GrTextureProxy.h b/include/private/GrTextureProxy.h index e841baeb1f..a761dca0c2 100644 --- a/include/private/GrTextureProxy.h +++ b/include/private/GrTextureProxy.h @@ -37,7 +37,7 @@ public: } } - bool isMipMapped() const { return fIsMipMapped; } + GrMipMapped mipMapped() const { return fMipMapped; } /** * Return the texture proxy's unique key. It will be invalid if the proxy doesn't have one. @@ -85,7 +85,7 @@ protected: sk_sp<GrSurface> createSurface(GrResourceProvider*) const override; private: - bool fIsMipMapped; + GrMipMapped fMipMapped; SkDestinationSurfaceColorMode fMipColorMode; GrUniqueKey fUniqueKey; |