aboutsummaryrefslogtreecommitdiffstats
path: root/core/effects
diff options
context:
space:
mode:
Diffstat (limited to 'core/effects')
-rw-r--r--core/effects/base.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/effects/base.h b/core/effects/base.h
index b02d33b7..83df7cf0 100644
--- a/core/effects/base.h
+++ b/core/effects/base.h
@@ -1,6 +1,7 @@
#ifndef CORE_EFFECTS_BASE_H
#define CORE_EFFECTS_BASE_H
+#include <array>
#include <stddef.h>
#include "almalloc.h"
@@ -165,6 +166,11 @@ union EffectProps {
struct {
float Gain;
} Dedicated;
+
+ struct {
+ std::array<float,3> OrientAt;
+ std::array<float,3> OrientUp;
+ } Convolution;
};