diff options
author | Arun Kumar K.R <akumarkr@codeaurora.org> | 2012-12-19 18:23:45 -0800 |
---|---|---|
committer | Steve Kondik <shade@chemlab.org> | 2013-01-23 10:15:58 -0800 |
commit | ba98737d26ef95f486ce35b5e55b50af9a4e4237 (patch) | |
tree | 3393841954076039227e9dfc03d73b91bdff8c9a | |
parent | 1db6026dec2c020dd4aad9dad515445b041ba43c (diff) | |
download | hardware_libhardware-ba98737d26ef95f486ce35b5e55b50af9a4e4237.zip hardware_libhardware-ba98737d26ef95f486ce35b5e55b50af9a4e4237.tar.gz hardware_libhardware-ba98737d26ef95f486ce35b5e55b50af9a4e4237.tar.bz2 |
hwcomposer: Add HWC_BLIT compositiontype value
- HWC_BLIT this layer will be handled in the HWC, using a blit engine
- setting this will inform Surfaceflinger to flip FB_TARGET
Change-Id: I25d19ec41b57863d451c3e390109c912faf1381c
-rw-r--r-- | include/hardware/hwcomposer_defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hardware/hwcomposer_defs.h b/include/hardware/hwcomposer_defs.h index b23f08a..8ec048b 100644 --- a/include/hardware/hwcomposer_defs.h +++ b/include/hardware/hwcomposer_defs.h @@ -97,6 +97,9 @@ enum { /* this layer holds the result of compositing the HWC_FRAMEBUFFER layers. * Added in HWC_DEVICE_API_VERSION_1_1. */ HWC_FRAMEBUFFER_TARGET = 3, + + /* this layer will be handled in the HWC, using a blit engine */ + HWC_BLIT = 4, }; /* |