Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Issue 808703006: remove view matrix from context (Closed)

Created:
6 years ago by joshua.litt
Modified:
6 years ago
Reviewers:
joshualitt, bsalomon
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@master
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

remove view matrix from context BUG=skia: Committed: https://skia.googlesource.com/skia/+/5531d51ce7426bdae7563547326fcf0bf926a083

Patch Set 1 #

Patch Set 2 : cleanups #

Total comments: 9

Patch Set 3 : comments #

Patch Set 4 : cleanups #

Patch Set 5 : nogpu fix #

Patch Set 6 : one more fix #

Unified diffs Side-by-side diffs Delta from patch set Stats (+446 lines, -532 lines) Patch
M gm/texdata.cpp View 2 chunks +2 lines, -3 lines 0 comments Download
M include/core/SkMaskFilter.h View 2 chunks +2 lines, -0 lines 0 comments Download
M include/core/SkShader.h View 1 2 1 chunk +5 lines, -1 line 0 comments Download
M include/effects/SkPerlinNoiseShader.h View 1 chunk +2 lines, -1 line 0 comments Download
M include/gpu/GrContext.h View 1 2 3 11 chunks +23 lines, -148 lines 0 comments Download
M include/gpu/GrPaint.h View 1 2 2 chunks +6 lines, -7 lines 0 comments Download
M include/gpu/SkGr.h View 1 chunk +1 line, -1 line 0 comments Download
M src/core/SkBitmapProcShader.h View 1 chunk +2 lines, -3 lines 0 comments Download
M src/core/SkBitmapProcShader.cpp View 1 2 3 4 4 chunks +5 lines, -3 lines 0 comments Download
M src/core/SkColorShader.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/core/SkImageFilter.cpp View 2 chunks +1 line, -3 lines 0 comments Download
M src/core/SkLocalMatrixShader.h View 1 chunk +5 lines, -4 lines 0 comments Download
M src/core/SkMaskFilter.cpp View 2 chunks +2 lines, -0 lines 0 comments Download
M src/core/SkPictureShader.h View 1 chunk +2 lines, -2 lines 0 comments Download
M src/core/SkPictureShader.cpp View 1 chunk +6 lines, -4 lines 0 comments Download
M src/core/SkShader.cpp View 3 chunks +7 lines, -5 lines 0 comments Download
M src/effects/SkAlphaThresholdFilter.cpp View 1 chunk +1 line, -5 lines 0 comments Download
M src/effects/SkBlurMaskFilter.cpp View 9 chunks +13 lines, -12 lines 0 comments Download
M src/effects/SkDisplacementMapEffect.cpp View 1 chunk +1 line, -4 lines 0 comments Download
M src/effects/SkGpuBlurUtils.cpp View 5 chunks +4 lines, -7 lines 0 comments Download
M src/effects/SkMorphologyImageFilter.cpp View 2 chunks +2 lines, -4 lines 0 comments Download
M src/effects/SkPerlinNoiseShader.cpp View 1 2 3 4 5 5 chunks +8 lines, -4 lines 0 comments Download
M src/effects/SkXfermodeImageFilter.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/effects/gradients/SkLinearGradient.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/effects/gradients/SkLinearGradient.cpp View 3 chunks +7 lines, -4 lines 0 comments Download
M src/effects/gradients/SkRadialGradient.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/effects/gradients/SkRadialGradient.cpp View 3 chunks +6 lines, -2 lines 0 comments Download
M src/effects/gradients/SkSweepGradient.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M src/effects/gradients/SkSweepGradient.cpp View 3 chunks +6 lines, -2 lines 0 comments Download
M src/effects/gradients/SkTwoPointConicalGradient.h View 1 chunk +2 lines, -2 lines 0 comments Download
M src/effects/gradients/SkTwoPointConicalGradient.cpp View 2 chunks +3 lines, -1 line 0 comments Download
M src/effects/gradients/SkTwoPointConicalGradient_gpu.cpp View 5 chunks +17 lines, -5 lines 0 comments Download
M src/effects/gradients/SkTwoPointRadialGradient.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/effects/gradients/SkTwoPointRadialGradient.cpp View 3 chunks +6 lines, -2 lines 0 comments Download
M src/gpu/GrBitmapTextContext.h View 1 chunk +4 lines, -3 lines 0 comments Download
M src/gpu/GrBitmapTextContext.cpp View 8 chunks +17 lines, -14 lines 0 comments Download
M src/gpu/GrContext.cpp View 1 2 3 27 chunks +56 lines, -45 lines 0 comments Download
M src/gpu/GrDistanceFieldTextContext.h View 1 chunk +5 lines, -3 lines 0 comments Download
M src/gpu/GrDistanceFieldTextContext.cpp View 1 12 chunks +24 lines, -17 lines 0 comments Download
M src/gpu/GrOvalRenderer.h View 3 chunks +6 lines, -8 lines 0 comments Download
M src/gpu/GrOvalRenderer.cpp View 15 chunks +24 lines, -30 lines 0 comments Download
M src/gpu/GrStencilAndCoverTextContext.h View 1 chunk +8 lines, -6 lines 0 comments Download
M src/gpu/GrStencilAndCoverTextContext.cpp View 14 chunks +19 lines, -17 lines 0 comments Download
M src/gpu/GrTextContext.h View 2 chunks +7 lines, -7 lines 0 comments Download
M src/gpu/GrTextContext.cpp View 2 chunks +7 lines, -5 lines 0 comments Download
M src/gpu/SkGpuDevice.h View 3 chunks +5 lines, -3 lines 0 comments Download
M src/gpu/SkGpuDevice.cpp View 1 47 chunks +99 lines, -97 lines 0 comments Download
M src/gpu/SkGr.cpp View 3 chunks +4 lines, -29 lines 0 comments Download
M src/gpu/effects/GrConfigConversionEffect.cpp View 1 chunk +3 lines, -3 lines 0 comments Download

Messages

Total messages: 17 (6 generated)
joshualitt
This sprawling change is really broad but shallow. The thing to really look out for ...
6 years ago (2014-12-17 14:39:52 UTC) #2
bsalomon
https://codereview.chromium.org/808703006/diff/20001/include/core/SkShader.h File include/core/SkShader.h (right): https://codereview.chromium.org/808703006/diff/20001/include/core/SkShader.h#newcode388 include/core/SkShader.h:388: virtual bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, Need ...
6 years ago (2014-12-17 17:12:34 UTC) #3
joshualitt
https://codereview.chromium.org/808703006/diff/20001/include/core/SkShader.h File include/core/SkShader.h (right): https://codereview.chromium.org/808703006/diff/20001/include/core/SkShader.h#newcode388 include/core/SkShader.h:388: virtual bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, On ...
6 years ago (2014-12-17 19:19:58 UTC) #4
joshualitt
feedback incorporated
6 years ago (2014-12-17 19:37:34 UTC) #5
bsalomon
lgtm assuming we add localMatrix back with follow up CL (I was wrong... need vm ...
6 years ago (2014-12-17 20:35:17 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/808703006/60001
6 years ago (2014-12-17 23:27:16 UTC) #8
commit-bot: I haz the power
Try jobs failed on following builders: Test-Ubuntu13.10-GCE-NoGPU-x86_64-Debug-Trybot on client.skia (http://build.chromium.org/p/client.skia/builders/Test-Ubuntu13.10-GCE-NoGPU-x86_64-Debug-Trybot/builds/1279)
6 years ago (2014-12-17 23:28:51 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/808703006/80001
6 years ago (2014-12-17 23:35:20 UTC) #12
commit-bot: I haz the power
Try jobs failed on following builders: Test-Ubuntu13.10-GCE-NoGPU-x86_64-Debug-Trybot on client.skia (http://build.chromium.org/p/client.skia/builders/Test-Ubuntu13.10-GCE-NoGPU-x86_64-Debug-Trybot/builds/1281)
6 years ago (2014-12-17 23:37:10 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/808703006/100001
6 years ago (2014-12-17 23:40:29 UTC) #16
commit-bot: I haz the power
6 years ago (2014-12-17 23:50:18 UTC) #17
Message was sent while issue was closed.
Committed patchset #6 (id:100001) as
https://skia.googlesource.com/skia/+/5531d51ce7426bdae7563547326fcf0bf926a083

Powered by Google App Engine
This is Rietveld 408576698