diff options
-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() { } }; |