Index: src/gpu/GrTextureParamsAdjuster.h |
diff --git a/src/gpu/GrTextureParamsAdjuster.h b/src/gpu/GrTextureParamsAdjuster.h |
index 103bcbf7208099d33ce73a92b4d1e3d34b84a1fa..64368f9edd3e9081dda6d52017ca2ed80e38f6ef 100644 |
--- a/src/gpu/GrTextureParamsAdjuster.h |
+++ b/src/gpu/GrTextureParamsAdjuster.h |
@@ -183,7 +183,7 @@ protected: |
* Return the maker's "original" texture. It is the responsibility of the maker to handle any |
* caching of the original if desired. |
*/ |
- virtual GrTexture* refOriginalTexture() = 0; |
+ virtual GrTexture* refOriginalTexture(bool willBeMipped) = 0; |
/** |
* Return a new (uncached) texture that is the stretch of the maker's original. |
@@ -195,7 +195,7 @@ protected: |
* Subclass may override this if they can handle creating the texture more directly than |
* by copying. |
*/ |
- virtual GrTexture* generateTextureForParams(const CopyParams&); |
+ virtual GrTexture* generateTextureForParams(const CopyParams&, bool willBeMipped); |
GrContext* context() const { return fContext; } |