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

Side by Side Diff: src/record/SkRecordCulling.cpp

Issue 243243003: anticipate more optimizations by renaming some files and methods (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/record/SkRecordCulling.h ('k') | src/record/SkRecordOpts.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkRecordCulling.h"
9
10 #include "SkRecords.h"
11 #include "SkTDArray.h"
12
13 namespace {
14
15 struct Annotator {
16 unsigned index;
17 SkTDArray<SkRecords::PushCull*> pushStack;
18
19 // Do nothing to most record types.
20 template <typename T> void operator()(T*) {}
21 };
22
23 template <> void Annotator::operator()(SkRecords::PushCull* push) {
24 // Store the push's index for now. We'll calculate the offset using this in the paired pop.
25 push->popOffset = index;
26 pushStack.push(push);
27 }
28
29 template <> void Annotator::operator()(SkRecords::PopCull* pop) {
30 SkRecords::PushCull* push = pushStack.top();
31 pushStack.pop();
32
33 SkASSERT(index > push->popOffset); // push->popOffset holds the ind ex of the push.
34 push->popOffset = index - push->popOffset; // Now it's the offset between p ush and pop.
35 }
36
37 } // namespace
38
39 void SkRecordAnnotateCullingPairs(SkRecord* record) {
40 Annotator annotator;
41
42 for (annotator.index = 0; annotator.index < record->count(); annotator.index ++) {
43 record->mutate(annotator.index, annotator);
44 }
45 }
OLDNEW
« no previous file with comments | « src/record/SkRecordCulling.h ('k') | src/record/SkRecordOpts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698