diff options
author | Chris Craik <ccraik@google.com> | 2012-04-03 13:53:46 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2012-04-03 14:44:38 -0700 |
commit | c70e89e2a024645d425b49db2bbf3f20ed68e518 (patch) | |
tree | 3c59db831a4e09010b2ecbf3142c631c229706f0 /include | |
parent | 8ea93aa6adc0e46c8931d31d4f940cdde97c672f (diff) | |
download | frameworks_base-c70e89e2a024645d425b49db2bbf3f20ed68e518.zip frameworks_base-c70e89e2a024645d425b49db2bbf3f20ed68e518.tar.gz frameworks_base-c70e89e2a024645d425b49db2bbf3f20ed68e518.tar.bz2 |
Fix hybrid build
Change-Id: Ieef556473e1878d1319f9844fb0bbb974637999e
Diffstat (limited to 'include')
-rw-r--r-- | include/private/hwui/DrawGlInfo.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/private/hwui/DrawGlInfo.h b/include/private/hwui/DrawGlInfo.h index 1e9912b..8028bf3 100644 --- a/include/private/hwui/DrawGlInfo.h +++ b/include/private/hwui/DrawGlInfo.h @@ -42,6 +42,34 @@ struct DrawGlInfo { float dirtyTop; float dirtyRight; float dirtyBottom; + + /** + * Values used as the "what" parameter of the functor. + */ + enum Mode { + // Indicates that the functor is called to perform a draw + kModeDraw, + // Indicates the the functor is called only to perform + // processing and that no draw should be attempted + kModeProcess + }; + + /** + * Values used by OpenGL functors to tell the framework + * what to do next. + */ + 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 + }; }; // struct DrawGlInfo }; // namespace uirenderer |