aboutsummaryrefslogtreecommitdiffstats
path: root/core/effects/base.h
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-11-28 12:51:46 +0100
committerSven Gothel <[email protected]>2023-11-28 12:51:46 +0100
commit1aaf4f070011490bcece50394b9b32dfa593fd9e (patch)
tree17d68284e401a35eea3d3a574d986d446a60763a /core/effects/base.h
parent6e7cee4fa9a8af03f28ca26cd89f8357390dfc90 (diff)
parent571b546f35eead77ce109f8d4dd6c3de3199d573 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'core/effects/base.h')
-rw-r--r--core/effects/base.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/effects/base.h b/core/effects/base.h
index 4ee19f37..83df7cf0 100644
--- a/core/effects/base.h
+++ b/core/effects/base.h
@@ -1,9 +1,9 @@
#ifndef CORE_EFFECTS_BASE_H
#define CORE_EFFECTS_BASE_H
+#include <array>
#include <stddef.h>
-#include "albyte.h"
#include "almalloc.h"
#include "alspan.h"
#include "atomic.h"
@@ -166,6 +166,11 @@ union EffectProps {
struct {
float Gain;
} Dedicated;
+
+ struct {
+ std::array<float,3> OrientAt;
+ std::array<float,3> OrientUp;
+ } Convolution;
};