libhwcomposer: Correct an enum mismatch in the HAL.

Correct the enumeration value of HWC_USE_COPYBIT factoring in the new
HWC_BACKGROUND enum in hwcomposer_defs.h.

Change-Id: I4a8f60ac1b5387bf6068a626d00db0b2e193ee98
This commit is contained in:
Mathew Karimpanal 2012-10-02 15:12:09 -07:00 committed by andrew.boren
parent dcda8a5f27
commit e8cda20833

View File

@ -56,8 +56,10 @@ enum external_display_type {
};
enum HWCCompositionType {
HWC_USE_GPU = HWC_FRAMEBUFFER, // This layer is to be handled by
// Surfaceflinger
// Surfaceflinger
HWC_USE_OVERLAY = HWC_OVERLAY, // This layer is to be handled by the overlay
HWC_USE_BACKGROUND
= HWC_BACKGROUND, // This layer is to be handled by TBD
HWC_USE_COPYBIT // This layer is to be handled by copybit
};