diff options
author | Robert Phillips <robertphillips@google.com> | 2017-01-20 12:44:06 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-01-20 18:18:18 +0000 |
commit | 67c18d6b5188a0497f6912a73d964c763d2f8f84 (patch) | |
tree | d32888c6b13589c2718fc6673f29acf2bb546c38 /src/effects/gradients | |
parent | 41398f430dc501d450e04540a83b6aa5baf87cd7 (diff) |
Continue making Ganesh use absolute texture coordinates - take 2
The idea here is that the GrCoordTransform will actually hold a GrTextureProxy (rather than a GrTexture) and then, in GrGLSLPrimitiveProcessor::GetTransformMatrix, use the instantiated width & height (when uploading the transform matrix)
Relanding of: https://skia-review.googlesource.com/c/6977/
Change-Id: Ibc9b9e354f7fc23b1a6e6e4fe7c9fe3cef771c02
Reviewed-on: https://skia-review.googlesource.com/7265
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/effects/gradients')
-rw-r--r-- | src/effects/gradients/SkGradientShader.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/effects/gradients/SkGradientShader.cpp b/src/effects/gradients/SkGradientShader.cpp index ca64cb77e1..b1d3e13a46 100644 --- a/src/effects/gradients/SkGradientShader.cpp +++ b/src/effects/gradients/SkGradientShader.cpp @@ -1659,14 +1659,18 @@ GrGradientEffect::GrGradientEffect(const CreateArgs& args) { fRow = fAtlas->lockRow(bitmap); if (-1 != fRow) { fYCoord = fAtlas->getYOffset(fRow)+SK_ScalarHalf*fAtlas->getNormalizedTexelHeight(); - fCoordTransform.reset(*args.fMatrix, fAtlas->getTexture(), params.filterMode()); + // This is 1/2 places where auto-normalization is disabled + fCoordTransform.reset(*args.fMatrix, fAtlas->getTexture(), + params.filterMode(), false); fTextureSampler.reset(fAtlas->getTexture(), params); } else { - sk_sp<GrTexture> texture(GrRefCachedBitmapTexture(args.fContext, bitmap, params)); + sk_sp<GrTexture> texture(GrRefCachedBitmapTexture(args.fContext, bitmap, + params, nullptr)); if (!texture) { return; } - fCoordTransform.reset(*args.fMatrix, texture.get(), params.filterMode()); + // This is 2/2 places where auto-normalization is disabled + fCoordTransform.reset(*args.fMatrix, texture.get(), params.filterMode(), false); fTextureSampler.reset(texture.get(), params); fYCoord = SK_ScalarHalf; } |