diff options
author | Romain Guy <romainguy@google.com> | 2013-03-01 14:31:04 -0800 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2013-03-01 16:04:53 -0800 |
commit | 0f6675332c04c74909425d1d328f02b32c0ff40e (patch) | |
tree | 53a912c204ba470a0d6cd2c5701a1aef614cc7eb /libs/hwui/DisplayListRenderer.h | |
parent | 8b5aa4846939975adacd6ea1d2a57a2493ac0216 (diff) | |
download | frameworks_base-0f6675332c04c74909425d1d328f02b32c0ff40e.zip frameworks_base-0f6675332c04c74909425d1d328f02b32c0ff40e.tar.gz frameworks_base-0f6675332c04c74909425d1d328f02b32c0ff40e.tar.bz2 |
Precache glyphs at final raster size
The deferred display lists model now allows us to precache glyphs
at their exact size on screen.
This change also removes debug markers when the renderer defers
and reorders display lists. It also adds a flush event marker.
Change-Id: I66ec5216dc12b93ecfdad52a7146b1cfb31fbeb4
Diffstat (limited to 'libs/hwui/DisplayListRenderer.h')
-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 bff3b97..38619bf 100644 --- a/libs/hwui/DisplayListRenderer.h +++ b/libs/hwui/DisplayListRenderer.h @@ -195,7 +195,7 @@ private: LinearAllocator& alloc() { return mDisplayListData->allocator; } void addStateOp(StateOp* op); - bool addDrawOp(DrawOp* op); // returns true if op not rejected + void addDrawOp(DrawOp* op); void addOpInternal(DisplayListOp* op) { insertRestoreToCount(); insertTranslate(); |