From 89685d9112cfdffb35d14fb18ddff38a18729587 Mon Sep 17 00:00:00 2001 From: cblume Date: Mon, 29 Feb 2016 11:27:31 -0800 Subject: Disabling mipmap generation until anisotropic mipmap levels are generated. BUG=590804 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1744413002 Review URL: https://codereview.chromium.org/1744413002 --- src/gpu/GrImageIDTextureAdjuster.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/gpu/GrImageIDTextureAdjuster.cpp') diff --git a/src/gpu/GrImageIDTextureAdjuster.cpp b/src/gpu/GrImageIDTextureAdjuster.cpp index 58dc5b975b..5ba99d20de 100644 --- a/src/gpu/GrImageIDTextureAdjuster.cpp +++ b/src/gpu/GrImageIDTextureAdjuster.cpp @@ -90,7 +90,8 @@ GrTexture* GrBitmapTextureMaker::refOriginalTexture(bool willBeMipped) { return tex; } } - + // disable mipmapping until we generate anisotropic mipmap levels + willBeMipped = false; if (willBeMipped) { tex = GrGenerateMipMapsAndUploadToTexture(this->context(), fBitmap); } else { -- cgit v1.2.3