diff options
author | Linux Build Service Account <lnxbuild@localhost> | 2022-01-16 17:17:36 -0800 |
---|---|---|
committer | Linux Build Service Account <lnxbuild@localhost> | 2022-01-16 17:17:36 -0800 |
commit | 4ceb3084ea44adadb9a08b9ef4728982ee98f176 (patch) | |
tree | 7f224267d3bcb63d583ab3ddf1ea788bd839b4ab | |
parent | 599f21d861180c1ff36d62688adc37c8c361f6b9 (diff) | |
parent | 7bbb89c99e2ffb4478cd965e757cb1567d1358f2 (diff) |
Merge 7bbb89c99e2ffb4478cd965e757cb1567d1358f2 on remote branch
Change-Id: I675af135328cd565976df7ab71197da956c98d01
-rw-r--r-- | include/composer_extn_intf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/composer_extn_intf.h b/include/composer_extn_intf.h index 54796ef2..e93087d1 100644 --- a/include/composer_extn_intf.h +++ b/include/composer_extn_intf.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2020, 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 @@ -34,6 +34,7 @@ #include "frame_scheduler_intf.h" #include "display_extn_intf.h" #include "phase_offset_extn_intf.h" +#include "smomo_interface.h" #define COMPOSER_EXTN_REV_MAJOR (1) #define COMPOSER_EXTN_REV_MINOR (0) @@ -50,6 +51,8 @@ class ComposerExtnIntf { virtual void DestroyDisplayExtn(DisplayExtnIntf *intf) = 0; virtual int CreatePhaseOffsetExtn(PhaseOffsetExtnIntf **intf) = 0; virtual void DestroyPhaseOffsetExtn(PhaseOffsetExtnIntf *intf) = 0; + virtual bool CreateSmomoExtn(smomo::SmomoIntf **intf) = 0; + virtual void DestroySmomoExtn(smomo::SmomoIntf *intf) = 0; protected: virtual ~ComposerExtnIntf() { } }; |