From 97fc9308e31bf03799725f998841212cd6231cdd Mon Sep 17 00:00:00 2001 From: brianosman Date: Thu, 12 May 2016 07:53:45 -0700 Subject: Fix sRGB textures that must be copied (for NPOT tiling, etc...) BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1969923002 Review-Url: https://codereview.chromium.org/1969923002 --- src/gpu/GrTextureParamsAdjuster.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/gpu/GrTextureParamsAdjuster.cpp b/src/gpu/GrTextureParamsAdjuster.cpp index 8868309a80..3c4769b96e 100644 --- a/src/gpu/GrTextureParamsAdjuster.cpp +++ b/src/gpu/GrTextureParamsAdjuster.cpp @@ -72,6 +72,7 @@ static GrTexture* copy_on_gpu(GrTexture* inputTexture, const SkIRect* subset, // TODO: If no scaling is being performed then use copySurface. GrPaint paint; + paint.setGammaCorrect(true); // TODO: Initializing these values for no reason cause the compiler is complaining SkScalar sx = 0.f; -- cgit v1.2.3