diff options
author | Chris Craik <ccraik@google.com> | 2014-01-02 14:56:40 -0800 |
---|---|---|
committer | Chris Craik <ccraik@google.com> | 2014-01-02 14:56:40 -0800 |
commit | 406af0293fde2d7bc12629b3a010019641549f08 (patch) | |
tree | b0aaeac6cda759381f6107eba01e65c6b1733ecc /libs | |
parent | e459367a3a49cbe94dfe38c50369431614dddc9c (diff) | |
download | frameworks_base-406af0293fde2d7bc12629b3a010019641549f08.zip frameworks_base-406af0293fde2d7bc12629b3a010019641549f08.tar.gz frameworks_base-406af0293fde2d7bc12629b3a010019641549f08.tar.bz2 |
Fix isRecording override
Change-Id: Ie73db838b749c29c6a8480ab67897492b83d337a
Diffstat (limited to 'libs')
-rw-r--r-- | libs/hwui/DisplayListRenderer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/DisplayListRenderer.h b/libs/hwui/DisplayListRenderer.h index 2c3f7c0..4326c90 100644 --- a/libs/hwui/DisplayListRenderer.h +++ b/libs/hwui/DisplayListRenderer.h @@ -63,7 +63,7 @@ public: ANDROID_API DisplayList* getDisplayList(DisplayList* displayList); - virtual bool isRecording() { return true; } + virtual bool isRecording() const { return true; } // ---------------------------------------------------------------------------- // Frame state operations |