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

Issue 313613004: Alter SkCanvas::drawPicture (devirtualize, take const SkPicture, take pointer) (Closed)

Created:
6 years, 6 months ago by robertphillips
Modified:
6 years, 6 months ago
Reviewers:
bsalomon, mtklein, reed1
CC:
skia-review_googlegroups.com
Base URL:
https://skia.googlesource.com/skia.git@master
Visibility:
Public.

Description

Alter SkCanvas::drawPicture (devirtualize, take const SkPicture, take pointer) Committed: https://skia.googlesource.com/skia/+/9b14f26d0f3a974f3dd626c8354e1db1cfcd322f

Patch Set 1 #

Total comments: 2

Patch Set 2 : Add staging entry point for Chromium and Android #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+187 lines, -159 lines) Patch
M dm/DMUtil.cpp View 1 chunk +1 line, -1 line 0 comments Download
M experimental/PdfViewer/SkNulCanvas.h View 2 chunks +2 lines, -1 line 0 comments Download
M gm/gmmain.cpp View 1 chunk +1 line, -1 line 0 comments Download
M gm/pathopsskpclip.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M gyp/skia_for_android_framework_defines.gypi View 1 1 chunk +1 line, -0 lines 0 comments Download
M gyp/skia_for_chromium_defines.gypi View 1 1 chunk +1 line, -0 lines 0 comments Download
M include/core/SkCanvas.h View 1 3 chunks +11 lines, -3 lines 2 comments Download
M include/core/SkDevice.h View 2 chunks +3 lines, -3 lines 0 comments Download
M include/core/SkPicture.h View 4 chunks +4 lines, -4 lines 0 comments Download
M include/gpu/SkGpuDevice.h View 1 chunk +3 lines, -3 lines 0 comments Download
M include/utils/SkDeferredCanvas.h View 2 chunks +2 lines, -1 line 0 comments Download
M include/utils/SkDumpCanvas.h View 2 chunks +2 lines, -1 line 0 comments Download
M include/utils/SkLuaCanvas.h View 2 chunks +2 lines, -1 line 0 comments Download
M include/utils/SkNWayCanvas.h View 2 chunks +2 lines, -1 line 0 comments Download
M include/utils/SkProxyCanvas.h View 2 chunks +2 lines, -1 line 0 comments Download
M samplecode/SampleApp.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M samplecode/SamplePictFile.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M samplecode/SamplePicture.cpp View 3 chunks +9 lines, -9 lines 0 comments Download
M samplecode/SampleTiling.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/core/SkBBoxRecord.h View 2 chunks +1 line, -1 line 0 comments Download
M src/core/SkBBoxRecord.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M src/core/SkCanvas.cpp View 1 chunk +13 lines, -5 lines 0 comments Download
M src/core/SkDevice.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M src/core/SkPicture.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M src/core/SkPicturePlayback.h View 2 chunks +3 lines, -3 lines 0 comments Download
M src/core/SkPicturePlayback.cpp View 4 chunks +5 lines, -5 lines 0 comments Download
M src/core/SkPictureRecord.h View 5 chunks +5 lines, -4 lines 0 comments Download
M src/core/SkPictureRecord.cpp View 2 chunks +5 lines, -5 lines 0 comments Download
M src/core/SkPictureShader.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/effects/SkPictureImageFilter.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/GrLayerCache.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/gpu/GrLayerCache.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M src/gpu/GrPictureUtils.h View 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/GrPictureUtils.cpp View 5 chunks +18 lines, -17 lines 0 comments Download
M src/gpu/SkGpuDevice.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M src/pipe/SkGPipeWrite.cpp View 3 chunks +4 lines, -3 lines 0 comments Download
M src/record/SkRecorder.h View 2 chunks +2 lines, -1 line 0 comments Download
M src/record/SkRecorder.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M src/utils/SkDeferredCanvas.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/utils/SkDumpCanvas.cpp View 1 chunk +5 lines, -5 lines 0 comments Download
M src/utils/SkGatherPixelRefsAndRects.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/utils/SkLuaCanvas.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M src/utils/SkNWayCanvas.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/utils/SkPictureUtils.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/utils/SkProxyCanvas.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/utils/debugger/SkDebugCanvas.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/utils/debugger/SkDebugCanvas.cpp View 1 chunk +1 line, -1 line 0 comments Download
M src/utils/debugger/SkDrawCommand.h View 1 chunk +2 lines, -2 lines 0 comments Download
M src/utils/debugger/SkDrawCommand.cpp View 2 chunks +6 lines, -6 lines 0 comments Download
M tests/CanvasTest.cpp View 1 chunk +1 line, -1 line 0 comments Download
M tests/ImageFilterTest.cpp View 6 chunks +6 lines, -6 lines 0 comments Download
M tests/PictureStateTreeTest.cpp View 3 chunks +6 lines, -6 lines 0 comments Download
M tests/PictureTest.cpp View 10 chunks +13 lines, -13 lines 0 comments Download
M tools/CopyTilesRenderer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M tools/PdfRenderer.cpp View 1 chunk +1 line, -1 line 0 comments Download
M tools/PictureRenderer.cpp View 4 chunks +4 lines, -4 lines 0 comments Download
M tools/lua/lua_pictures.cpp View 1 chunk +1 line, -1 line 0 comments Download
M tools/pinspect.cpp View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 10 (0 generated)
robertphillips
https://codereview.chromium.org/313613004/diff/1/include/core/SkPicture.h File include/core/SkPicture.h (right): https://codereview.chromium.org/313613004/diff/1/include/core/SkPicture.h#newcode71 include/core/SkPicture.h:71: void EXPERIMENTAL_addAccelData(const AccelData* data) const { This is a ...
6 years, 6 months ago (2014-06-03 21:46:37 UTC) #1
reed1
I love it... Will you get away with this when it initially lands? Seems like ...
6 years, 6 months ago (2014-06-03 22:20:17 UTC) #2
mtklein
https://codereview.chromium.org/313613004/diff/20001/include/core/SkCanvas.h File include/core/SkCanvas.h (right): https://codereview.chromium.org/313613004/diff/20001/include/core/SkCanvas.h#newcode986 include/core/SkCanvas.h:986: void drawPicture(const SkPicture* picture); How come these aren't all ...
6 years, 6 months ago (2014-06-03 22:23:24 UTC) #3
robertphillips
https://codereview.chromium.org/313613004/diff/20001/include/core/SkCanvas.h File include/core/SkCanvas.h (right): https://codereview.chromium.org/313613004/diff/20001/include/core/SkCanvas.h#newcode986 include/core/SkCanvas.h:986: void drawPicture(const SkPicture* picture); On 2014/06/03 22:23:23, mtklein wrote: ...
6 years, 6 months ago (2014-06-03 23:17:21 UTC) #4
reed1
On 2014/06/03 23:17:21, robertphillips wrote: > https://codereview.chromium.org/313613004/diff/20001/include/core/SkCanvas.h > File include/core/SkCanvas.h (right): > > https://codereview.chromium.org/313613004/diff/20001/include/core/SkCanvas.h#newcode986 > ...
6 years, 6 months ago (2014-06-03 23:21:41 UTC) #5
mtklein
On 2014/06/03 23:21:41, reed1 wrote: > On 2014/06/03 23:17:21, robertphillips wrote: > > https://codereview.chromium.org/313613004/diff/20001/include/core/SkCanvas.h > ...
6 years, 6 months ago (2014-06-03 23:30:40 UTC) #6
reed1
On 2014/06/03 23:30:40, mtklein wrote: > On 2014/06/03 23:21:41, reed1 wrote: > > On 2014/06/03 ...
6 years, 6 months ago (2014-06-03 23:36:04 UTC) #7
robertphillips
The CQ bit was checked by robertphillips@google.com
6 years, 6 months ago (2014-06-04 12:15:59 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://skia-tree-status.appspot.com/cq/robertphillips@google.com/313613004/20001
6 years, 6 months ago (2014-06-04 12:17:03 UTC) #9
commit-bot: I haz the power
6 years, 6 months ago (2014-06-04 12:40:49 UTC) #10
Message was sent while issue was closed.
Change committed as 9b14f26d0f3a974f3dd626c8354e1db1cfcd322f

Powered by Google App Engine
This is Rietveld 408576698