diff options
author | Robert Phillips <robertphillips@google.com> | 2017-07-27 16:16:25 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-07-27 22:16:06 +0000 |
commit | 16d8ec66cdce2f30ce89b87066d3ac7a244c460d (patch) | |
tree | c1428954ad363f7e2b6ce13bbb1640911c7a8262 /gm | |
parent | 713195071dc7bdeddec2d1c9fab9b3720f049f07 (diff) |
Pull non-substantive changes out of omnibus GrSurface CL
https://skia-review.googlesource.com/c/26363 (Remove origin field from GrSurface) is
already too large. This pulls some of the cosmetic changes out for separate review.
Change-Id: I1d8b95522144b2f4cbd916ef38faa3dde6f78087
Reviewed-on: https://skia-review.googlesource.com/27840
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'gm')
-rw-r--r-- | gm/image_pict.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gm/image_pict.cpp b/gm/image_pict.cpp index 7b8adf1d45..c4bb8130bb 100644 --- a/gm/image_pict.cpp +++ b/gm/image_pict.cpp @@ -180,10 +180,10 @@ protected: // need to copy the subset into a new texture GrSurfaceDesc desc; - desc.fConfig = fProxy->config(); + desc.fOrigin = fProxy->origin(); desc.fWidth = info.width(); desc.fHeight = info.height(); - desc.fOrigin = fProxy->origin(); + desc.fConfig = fProxy->config(); sk_sp<GrSurfaceContext> dstContext(fCtx->contextPriv().makeDeferredSurfaceContext( desc, |