diff options
author | John Reck <jreck@google.com> | 2014-03-29 01:41:50 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-03-29 01:41:50 +0000 |
commit | c75db8266b352ef3a7a6b76654f770d7a24d547a (patch) | |
tree | a39e68ee43ca2c325da94532f4eff3a80940bf13 /include | |
parent | 903d6407b0f5fcf12373daadcce90aaad44a5491 (diff) | |
parent | 750ca6dbdb259aea0ca5b77380a9303e586ef3ea (diff) | |
download | frameworks_base-c75db8266b352ef3a7a6b76654f770d7a24d547a.zip frameworks_base-c75db8266b352ef3a7a6b76654f770d7a24d547a.tar.gz frameworks_base-c75db8266b352ef3a7a6b76654f770d7a24d547a.tar.bz2 |
Merge "Remove kStatusInvoke & kStatusDraw"
Diffstat (limited to 'include')
-rw-r--r-- | include/private/hwui/DrawGlInfo.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/private/hwui/DrawGlInfo.h b/include/private/hwui/DrawGlInfo.h index fc810be..3b7ba8b 100644 --- a/include/private/hwui/DrawGlInfo.h +++ b/include/private/hwui/DrawGlInfo.h @@ -65,14 +65,6 @@ struct DrawGlInfo { enum Status { // The functor is done kStatusDone = 0x0, - // The functor is requesting a redraw (the clip rect - // used by the redraw is specified by DrawGlInfo.) - // The rest of the UI might redraw too. - kStatusDraw = 0x1, - // The functor needs to be invoked again but will - // not redraw. Only the functor is invoked again - // (unless another functor requests a redraw.) - kStatusInvoke = 0x2, // DisplayList actually issued GL drawing commands. // This is used to signal the HardwareRenderer that the // buffers should be flipped - otherwise, there were no |