diff options
author | Boreddy Mahidhar <quic_bmahidha@quicinc.com> | 2022-07-26 10:36:49 +0530 |
---|---|---|
committer | Boreddy Mahidhar <quic_bmahidha@quicinc.com> | 2022-07-26 11:30:11 +0530 |
commit | 99f2dae7532775953451243522e2c9d01d91b19d (patch) | |
tree | 73d922c3a80575c8b059f77d1ab449156003c130 | |
parent | 1d3fbf542c1afd13ce878949d452a0349e41d781 (diff) |
sdm: Allow active mode change even qsync is enabled
-- Driver end support is added to handle mode change even qsync is enabled.
Change-Id: I4ad65ea5741207b28654020aba33fa024e62916c
-rw-r--r-- | sdm/libs/core/display_base.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sdm/libs/core/display_base.cpp b/sdm/libs/core/display_base.cpp index 94106cbc..c54bdf6d 100644 --- a/sdm/libs/core/display_base.cpp +++ b/sdm/libs/core/display_base.cpp @@ -1965,12 +1965,6 @@ DisplayError DisplayBase::SetActiveConfig(uint32_t index) { return kErrorNone; } - // Reject active config changes if qsync is in use. - if (qsync_mode_ != kQSyncModeNone) { - DLOGE("Failed: Qsync is in use, qsync_mode_: %d", qsync_mode_); - return kErrorNotSupported; - } - error = hw_intf_->SetDisplayAttributes(index); if (error != kErrorNone) { return error; |