diff options
author | qctecmdr <qctecmdr@localhost> | 2019-09-25 19:35:29 -0700 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-09-25 19:35:29 -0700 |
commit | dd95613f5615777b69514e194e8520ab0cd9b60b (patch) | |
tree | e82afbe19bacbcfdc5fb3eaef589933b03be26a5 /sdm/libs/hwc2/hwc_session.cpp | |
parent | 6fe8dfe472279da74ca575eccb28b80607f3533e (diff) | |
parent | d73d023c9b7587c55ede6c39eb930c10b6252ea3 (diff) |
Merge "hwc2: Start IDisplayConfig after composer init done."
Diffstat (limited to 'sdm/libs/hwc2/hwc_session.cpp')
-rw-r--r-- | sdm/libs/hwc2/hwc_session.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdm/libs/hwc2/hwc_session.cpp b/sdm/libs/hwc2/hwc_session.cpp index 0afaeab4..d573682a 100644 --- a/sdm/libs/hwc2/hwc_session.cpp +++ b/sdm/libs/hwc2/hwc_session.cpp @@ -205,7 +205,6 @@ int HWCSession::Init() { return -EINVAL; } - StartServices(); HWCDebugHandler::Get()->GetProperty(ENABLE_NULL_DISPLAY_PROP, &null_display_mode_); HWCDebugHandler::Get()->GetProperty(DISABLE_HOTPLUG_BWCHECK, &disable_hotplug_bwcheck_); HWCDebugHandler::Get()->GetProperty(DISABLE_MASK_LAYER_HINT, &disable_mask_layer_hint_); @@ -229,6 +228,7 @@ int HWCSession::Init() { } is_composer_up_ = true; + StartServices(); return 0; } |