summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralk3pInjection <webmaster@raspii.tech>2022-01-21 12:56:54 +0800
committeralk3pInjection <webmaster@raspii.tech>2022-01-21 12:56:54 +0800
commit7b4c0325eac7ebb3e1a6541999f5658c5635cae8 (patch)
tree0ac21feedea73bc77cc9ccd99fce52880436f12a
parent8eb7849ea7692dd608be22e8e0eabca541fbef0c (diff)
parent4ceb3084ea44adadb9a08b9ef4728982ee98f176 (diff)
Merge tag 'LA.QSSI.12.0.r1-05800-qssi.0' into sugisawa
"LA.QSSI.12.0.r1-05800-qssi.0" Change-Id: I9674679f599368a58c874032c91318eeaa49f504
-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() { }
};