diff options
author | 2017-06-01 12:55:44 -0400 | |
---|---|---|
committer | 2017-06-02 11:46:40 +0000 | |
commit | 18166eeaf2d088d494c4273b88107544166046fd (patch) | |
tree | a5653250b48b2c3c432127ac2e40d57008a5f117 /src/gpu/GrCoordTransform.cpp | |
parent | dec4c0b29843d5de7d06c3998d919b3e3abecdf2 (diff) |
Omnibus: Push instantiation of GrTextures later (post TextureSampler)
Split into:
https://skia-review.googlesource.com/c/10485/ (More GrSurfaceProxy-clean up)
https://skia-review.googlesource.com/c/15819/ (Expand GrTextureProxy to handle highestFilterMode)
https://skia-review.googlesource.com/c/16714/ (Switch ImageStorageAccess over to GrTextureProxies)
https://skia-review.googlesource.com/c/16908/ (Convert DstTexture to DstProxy)
Change-Id: I6cf3ba0f3bf0e1908d36749bc83571c066ddd568
Reviewed-on: https://skia-review.googlesource.com/10484
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/gpu/GrCoordTransform.cpp')
-rw-r--r-- | src/gpu/GrCoordTransform.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gpu/GrCoordTransform.cpp b/src/gpu/GrCoordTransform.cpp index 4767e53d69..de8b8cc168 100644 --- a/src/gpu/GrCoordTransform.cpp +++ b/src/gpu/GrCoordTransform.cpp @@ -16,9 +16,7 @@ void GrCoordTransform::reset(GrResourceProvider* resourceProvider, const SkMatri fMatrix = m; // MDB TODO: just GrCaps is needed for this method - // MDB TODO: once all the coord transforms take a proxy just store it here and - // instantiate later - fTexture = proxy->instantiateTexture(resourceProvider); + fProxy = proxy; fNormalize = normalize; fReverseY = kBottomLeft_GrSurfaceOrigin == proxy->origin(); } |