diff options
author | John Reck <jreck@google.com> | 2014-03-12 13:56:30 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2014-03-12 13:56:30 -0700 |
commit | e18264b079481a244b30e3f71012c53bbd861f92 (patch) | |
tree | 0127f3fc60aa351108ee8abd8ee180a5b193b03e /libs/hwui/DisplayList.h | |
parent | 5b568aa04a91786962af1ab372b5a62481eea8cc (diff) | |
download | frameworks_base-e18264b079481a244b30e3f71012c53bbd861f92.zip frameworks_base-e18264b079481a244b30e3f71012c53bbd861f92.tar.gz frameworks_base-e18264b079481a244b30e3f71012c53bbd861f92.tar.bz2 |
Rename DisplayList->RenderNode
Change-Id: Id42e23c9a1a6eb6eaeafef707ced7fa6887b03d0
Diffstat (limited to 'libs/hwui/DisplayList.h')
-rw-r--r-- | libs/hwui/DisplayList.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/hwui/DisplayList.h b/libs/hwui/DisplayList.h index 189b544a..7d0e30e 100644 --- a/libs/hwui/DisplayList.h +++ b/libs/hwui/DisplayList.h @@ -160,17 +160,17 @@ private: * recorded stream of canvas operations is refreshed. The DisplayList (and its properties) stay * attached. */ -class DisplayList { +class RenderNode { public: - ANDROID_API DisplayList(); - ANDROID_API ~DisplayList(); + ANDROID_API RenderNode(); + ANDROID_API ~RenderNode(); // See flags defined in DisplayList.java enum ReplayFlag { kReplayFlag_ClipChildren = 0x1 }; - ANDROID_API static void destroyDisplayListDeferred(DisplayList* displayList); + ANDROID_API static void destroyDisplayListDeferred(RenderNode* displayList); ANDROID_API static void outputLogBuffer(int fd); ANDROID_API void setData(DisplayListData* newData); |