summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajat Yadav <quic_rajayada@quicinc.com>2021-10-01 17:05:03 +0530
committerRajat Yadav <quic_rajayada@quicinc.com>2021-12-28 18:33:29 +0530
commit7bbb89c99e2ffb4478cd965e757cb1567d1358f2 (patch)
tree7f224267d3bcb63d583ab3ddf1ea788bd839b4ab
parent3ff81660f7950ab4d66b5ad57cc8d531150ab33b (diff)
commonsys-intf: Move smomo to composer extn
CRs-Fixed: 3100828 Change-Id: I29e7b385886d95b8e63f0c2e7277d727143c6ed9
-rw-r--r--include/composer_extn_intf.h5
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() { }
};