diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-04-08 23:31:35 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-04-08 23:31:35 +0000 |
commit | 506db0b7d2905c6bedba9fc5d4aeaf231a9a34ea (patch) | |
tree | 77d73de439e9102d45891be433c5556ee23ce74c /dm | |
parent | 9ffa52d98fc216b6766f33ffd0d9f1c3a1acdb2f (diff) |
SkRecord: make culling work if SkRecordAnnotateCullingPairs is called.
- Allow stateful functors; allow visit()/mutate() at a given index; add count().
- Annotate cull push/pop pairs on the PushCull records. (tested)
- Use those annotations to skip ahead in SkRecordDraw. (not yet tested beyond dm --skr)
- Make SkRecordDraw a function, move its implementation to a .cpp.
BUG=skia:2378
R=fmalita@chromium.org, mtklein@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/229523002
git-svn-id: http://skia.googlecode.com/svn/trunk@14101 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'dm')
-rw-r--r-- | dm/DMRecordTask.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dm/DMRecordTask.cpp b/dm/DMRecordTask.cpp index 0109a41d8f..d38fc4ca23 100644 --- a/dm/DMRecordTask.cpp +++ b/dm/DMRecordTask.cpp @@ -27,7 +27,8 @@ void RecordTask::draw() { SkBitmap bitmap; SetupBitmap(fReference.colorType(), fGM.get(), &bitmap); SkCanvas target(bitmap); - record.visit(SkRecordDraw(&target)); + + SkRecordDraw(record, &target); if (!BitmapsEqual(bitmap, fReference)) { this->fail(); |