diff options
author | dianlujitao <dianlujitao@lineageos.org> | 2022-02-17 23:11:55 +0800 |
---|---|---|
committer | LuK1337 <priv.luk@gmail.com> | 2022-04-26 09:56:26 +0200 |
commit | 4eeaa00b09ce1bef370e34acc804b27b83ef324b (patch) | |
tree | 6037553938c5740fa234c0303ee93be21c0da10e /sde-drm/drm_atomic_req.cpp | |
parent | 7dcdd7ab288d6673200a8f8ffaea03ed48c32cc7 (diff) | |
parent | 1a45165b9a1dcc07c60a9513deab09d6da717288 (diff) |
Merge tag 'LA.UM.9.12.r1-13500.01-SMxx50.QSSI12.0' of http://source.codeaurora.org/quic/la/platform/hardware/qcom/display into HEAD
"LA.UM.9.12.r1-13500.01-SMxx50.QSSI12.0"
Change-Id: I4b968c6fade57ec530799753bf7c55e2fd27951c
Diffstat (limited to 'sde-drm/drm_atomic_req.cpp')
-rw-r--r-- | sde-drm/drm_atomic_req.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sde-drm/drm_atomic_req.cpp b/sde-drm/drm_atomic_req.cpp index 8f381333..6a485c0c 100644 --- a/sde-drm/drm_atomic_req.cpp +++ b/sde-drm/drm_atomic_req.cpp @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019, The Linux Foundation. All rights reserved. +* Copyright (c) 2019, 2021, The Linux Foundation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -132,6 +132,9 @@ int DRMAtomicReq::Perform(DRMOps opcode, uint32_t obj_id, ...) { case DRMOps::DPPS_COMMIT_FEATURE: { drm_mgr_->GetDppsMgrIntf()->CommitDppsFeatures(drm_atomic_req_, token_); } break; + case DRMOps::COMMIT_PANEL_FEATURES: { + drm_mgr_->GetPanelFeatureMgrIntf()->CommitPanelFeatures(drm_atomic_req_, token_); + } break; default: DRM_LOGE("Invalid opcode %d", opcode); } |