From 72a7e2e4072bbf53bb5aeaeaf8a5f021a2afad2b Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Tue, 8 Nov 2016 08:21:39 +0100 Subject: [PATCH] Enable hwcomposer support by default --- src/anbox/qemu/boot_properties_message_processor.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/anbox/qemu/boot_properties_message_processor.cpp b/src/anbox/qemu/boot_properties_message_processor.cpp index a1f9300..8b7e6f8 100644 --- a/src/anbox/qemu/boot_properties_message_processor.cpp +++ b/src/anbox/qemu/boot_properties_message_processor.cpp @@ -65,13 +65,11 @@ void BootPropertiesMessageProcessor::list_properties() { // Mark us as a device without telephony support (as we don't have a RIL) "ro.radio.noril=yes", - }; - if (utils::is_env_set("USE_HWCOMPOSER")) { // To let surfaceflinger load our hwcomposer implementation we specify // the correct subkey of the module here. - properties.push_back("ro.hardware.hwcomposer=anbox"); - } + "ro.hardware.hwcomposer=anbox" + }; for (const auto &prop : properties) { send_header(prop.length());