Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 11d10610 authored by Chia-I Wu's avatar Chia-I Wu
Browse files

surfaceflinger: fix mUseHwcVirtualDisplays logging

Test: log message is correct
Change-Id: I8752d886ce97eefa980ff4f64c4dc0688929f4f5
parent 2d38d8e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -351,7 +351,7 @@ SurfaceFlinger::SurfaceFlinger() : SurfaceFlinger(SkipInitialization) {


    property_get("debug.sf.enable_hwc_vds", value, "0");
    property_get("debug.sf.enable_hwc_vds", value, "0");
    mUseHwcVirtualDisplays = atoi(value);
    mUseHwcVirtualDisplays = atoi(value);
    ALOGI_IF(!mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
    ALOGI_IF(mUseHwcVirtualDisplays, "Enabling HWC virtual displays");


    property_get("ro.sf.disable_triple_buffer", value, "1");
    property_get("ro.sf.disable_triple_buffer", value, "1");
    mLayerTripleBufferingDisabled = atoi(value);
    mLayerTripleBufferingDisabled = atoi(value);