summaryrefslogtreecommitdiff
path: root/libs/hwui/DisplayList.h
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2015-10-16 10:24:55 -0700
committerChris Craik <ccraik@google.com>2015-10-16 10:38:34 -0700
commit003cc3dec8e2a92e51086fbcd5ee1bb236efa701 (patch)
tree8259dbf89955c599183f241268ce7704d6f2fc93 /libs/hwui/DisplayList.h
parente4436e325c7756b162d99b05ece3dd9c38ce3a44 (diff)
Rename DisplayListData to DisplayList
Change-Id: I25f6bb88ffdf9baf7e8e4e2a294aa8c9d2a4605b
Diffstat (limited to 'libs/hwui/DisplayList.h')
-rw-r--r--libs/hwui/DisplayList.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/hwui/DisplayList.h b/libs/hwui/DisplayList.h
index 80ff96a32fc1..d32406f3d308 100644
--- a/libs/hwui/DisplayList.h
+++ b/libs/hwui/DisplayList.h
@@ -112,16 +112,16 @@ struct ReplayStateStruct : public PlaybackStateStruct {
/**
* Data structure that holds the list of commands used in display list stream
*/
-class DisplayListData {
+class DisplayList {
friend class DisplayListCanvas;
friend class RecordingCanvas;
public:
struct Chunk {
- // range of included ops in DLD::displayListOps
+ // range of included ops in DisplayList::ops()
size_t beginOpIndex;
size_t endOpIndex;
- // range of included children in DLD::mChildren
+ // range of included children in DisplayList::children()
size_t beginChildIndex;
size_t endChildIndex;
@@ -129,8 +129,8 @@ public:
bool reorderChildren;
};
- DisplayListData();
- ~DisplayListData();
+ DisplayList();
+ ~DisplayList();
// pointers to all ops within display list, pointing into allocator data
std::vector<DisplayListOp*> displayListOps;