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

Issue 499413002: SkTextBlob plumbing (Closed)

Created:
6 years, 4 months ago by f(malita)
Modified:
6 years, 3 months ago
CC:
reviews_skia.org, jbroman
Base URL:
https://skia.googlesource.com/skia.git@master
Project:
skia
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 2

Patch Set 2 : Revert unintended SampleApp change. #

Total comments: 3

Patch Set 3 : Deserialize using a builder. #

Total comments: 15

Patch Set 4 : review comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+347 lines, -11 lines) Patch
M include/core/SkPicture.h View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M include/core/SkTextBlob.h View 2 chunks +9 lines, -0 lines 0 comments Download
M include/utils/SkDeferredCanvas.h View 1 chunk +2 lines, -0 lines 0 comments Download
M include/utils/SkDumpCanvas.h View 1 chunk +2 lines, -0 lines 0 comments Download
M include/utils/SkLua.h View 2 chunks +2 lines, -0 lines 0 comments Download
M include/utils/SkLuaCanvas.h View 1 chunk +2 lines, -0 lines 0 comments Download
M include/utils/SkNWayCanvas.h View 1 chunk +2 lines, -0 lines 0 comments Download
M include/utils/SkProxyCanvas.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/core/SkBBoxRecord.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/core/SkBBoxRecord.cpp View 2 chunks +16 lines, -0 lines 0 comments Download
M src/core/SkPictureData.h View 4 chunks +13 lines, -3 lines 0 comments Download
M src/core/SkPictureData.cpp View 1 2 3 6 chunks +52 lines, -0 lines 0 comments Download
M src/core/SkPictureFlat.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/core/SkPicturePlayback.cpp View 2 chunks +8 lines, -0 lines 0 comments Download
M src/core/SkPictureRecord.h View 4 chunks +9 lines, -1 line 0 comments Download
M src/core/SkPictureRecord.cpp View 1 2 3 6 chunks +32 lines, -1 line 0 comments Download
M src/core/SkRecorder.h View 1 chunk +1 line, -1 line 0 comments Download
M src/core/SkTextBlob.cpp View 1 2 3 3 chunks +84 lines, -3 lines 0 comments Download
M src/pipe/SkGPipePriv.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/pipe/SkGPipeRead.cpp View 2 chunks +5 lines, -0 lines 0 comments Download
M src/pipe/SkGPipeWrite.cpp View 2 chunks +9 lines, -0 lines 0 comments Download
M src/utils/SkDeferredCanvas.cpp View 1 chunk +7 lines, -0 lines 0 comments Download
M src/utils/SkDumpCanvas.cpp View 2 chunks +9 lines, -0 lines 0 comments Download
M src/utils/SkLua.cpp View 3 chunks +7 lines, -0 lines 0 comments Download
M src/utils/SkLuaCanvas.cpp View 1 chunk +9 lines, -0 lines 0 comments Download
M src/utils/SkNWayCanvas.cpp View 1 chunk +8 lines, -0 lines 0 comments Download
M src/utils/SkProxyCanvas.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
M src/utils/debugger/SkDebugCanvas.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/utils/debugger/SkDebugCanvas.cpp View 1 chunk +5 lines, -0 lines 0 comments Download
M src/utils/debugger/SkDrawCommand.h View 1 chunk +15 lines, -0 lines 0 comments Download
M src/utils/debugger/SkDrawCommand.cpp View 2 chunks +22 lines, -0 lines 0 comments Download

Messages

Total messages: 14 (0 generated)
f(malita)
6 years, 4 months ago (2014-08-25 18:11:47 UTC) #1
reed1
Can the flattening/unflattening be written to purely use the Builder on unflattening? This is a ...
6 years, 4 months ago (2014-08-25 18:51:40 UTC) #2
f(malita)
On 2014/08/25 18:51:40, reed1 wrote: > Can the flattening/unflattening be written to purely use the ...
6 years, 4 months ago (2014-08-25 18:57:49 UTC) #3
mtklein
https://codereview.chromium.org/499413002/diff/1/samplecode/SampleApp.cpp File samplecode/SampleApp.cpp (right): https://codereview.chromium.org/499413002/diff/1/samplecode/SampleApp.cpp#newcode1293 samplecode/SampleApp.cpp:1293: canvas = fRecorder.DEPRECATED_beginRecording(9999, 9999, NULL, 0); Can we make ...
6 years, 4 months ago (2014-08-25 18:59:07 UTC) #4
f(malita)
https://codereview.chromium.org/499413002/diff/1/samplecode/SampleApp.cpp File samplecode/SampleApp.cpp (right): https://codereview.chromium.org/499413002/diff/1/samplecode/SampleApp.cpp#newcode1293 samplecode/SampleApp.cpp:1293: canvas = fRecorder.DEPRECATED_beginRecording(9999, 9999, NULL, 0); On 2014/08/25 18:59:07, ...
6 years, 4 months ago (2014-08-25 19:00:26 UTC) #5
f(malita)
On 2014/08/25 18:57:49, Florin Malita wrote: > On 2014/08/25 18:51:40, reed1 wrote: > > Can ...
6 years, 4 months ago (2014-08-25 19:30:59 UTC) #6
mtklein
lgtm https://codereview.chromium.org/499413002/diff/20001/include/core/SkPicture.h File include/core/SkPicture.h (right): https://codereview.chromium.org/499413002/diff/20001/include/core/SkPicture.h#newcode245 include/core/SkPicture.h:245: // V34: Add SkTextBlob serialization. Do you mind ...
6 years, 4 months ago (2014-08-25 19:34:26 UTC) #7
robertphillips
https://codereview.chromium.org/499413002/diff/40001/src/core/SkPictureData.cpp File src/core/SkPictureData.cpp (right): https://codereview.chromium.org/499413002/diff/40001/src/core/SkPictureData.cpp#newcode80 src/core/SkPictureData.cpp:80: templatize (sp) ? https://codereview.chromium.org/499413002/diff/40001/src/core/SkPictureData.cpp#newcode86 src/core/SkPictureData.cpp:86: for (int i = ...
6 years, 4 months ago (2014-08-25 21:32:06 UTC) #8
f(malita)
https://codereview.chromium.org/499413002/diff/20001/include/core/SkPicture.h File include/core/SkPicture.h (right): https://codereview.chromium.org/499413002/diff/20001/include/core/SkPicture.h#newcode245 include/core/SkPicture.h:245: // V34: Add SkTextBlob serialization. On 2014/08/25 19:34:26, mtklein ...
6 years, 4 months ago (2014-08-25 23:56:03 UTC) #9
robertphillips
lgtm
6 years, 3 months ago (2014-08-26 13:13:14 UTC) #10
reed1
lgtm
6 years, 3 months ago (2014-08-26 14:50:32 UTC) #11
f(malita)
The CQ bit was checked by fmalita@chromium.org
6 years, 3 months ago (2014-08-26 14:53:52 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://skia-tree-status.appspot.com/cq/fmalita@chromium.org/499413002/60001
6 years, 3 months ago (2014-08-26 14:54:35 UTC) #13
commit-bot: I haz the power
6 years, 3 months ago (2014-08-26 14:56:50 UTC) #14
Message was sent while issue was closed.
Committed patchset #4 (60001) as b7425173f96e93b090787e2386ba5f022b6c2869

Powered by Google App Engine
This is Rietveld 408576698