aboutsummaryrefslogtreecommitdiffstats
path: root/al/effects
diff options
context:
space:
mode:
Diffstat (limited to 'al/effects')
-rw-r--r--al/effects/autowah.cpp5
-rw-r--r--al/effects/chorus.cpp10
-rw-r--r--al/effects/compressor.cpp5
-rw-r--r--al/effects/distortion.cpp5
-rw-r--r--al/effects/echo.cpp4
-rw-r--r--al/effects/equalizer.cpp5
-rw-r--r--al/effects/fshifter.cpp5
-rw-r--r--al/effects/modulator.cpp5
-rw-r--r--al/effects/null.cpp8
-rw-r--r--al/effects/pshifter.cpp6
-rw-r--r--al/effects/reverb.cpp6
-rw-r--r--al/effects/vmorpher.cpp6
12 files changed, 35 insertions, 35 deletions
diff --git a/al/effects/autowah.cpp b/al/effects/autowah.cpp
index 51f8fff6..6fa859ba 100644
--- a/al/effects/autowah.cpp
+++ b/al/effects/autowah.cpp
@@ -143,6 +143,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXAUTOWAHPROPERTIES eax_{};
@@ -217,9 +219,6 @@ private:
const EaxEaxCall& eax_call);
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxAutoWahEffect
diff --git a/al/effects/chorus.cpp b/al/effects/chorus.cpp
index 15b9d635..397b338a 100644
--- a/al/effects/chorus.cpp
+++ b/al/effects/chorus.cpp
@@ -364,6 +364,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXCHORUSPROPERTIES eax_{};
@@ -461,9 +463,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxChorusEffect
@@ -949,6 +948,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXFLANGERPROPERTIES eax_{};
@@ -1046,9 +1047,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxFlangerEffect
diff --git a/al/effects/compressor.cpp b/al/effects/compressor.cpp
index d4a8e9c2..cd284383 100644
--- a/al/effects/compressor.cpp
+++ b/al/effects/compressor.cpp
@@ -102,6 +102,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXAGCCOMPRESSORPROPERTIES eax_{};
@@ -144,9 +146,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxCompressorEffect
diff --git a/al/effects/distortion.cpp b/al/effects/distortion.cpp
index 4554901c..0f4b6ed5 100644
--- a/al/effects/distortion.cpp
+++ b/al/effects/distortion.cpp
@@ -148,6 +148,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXDISTORTIONPROPERTIES eax_{};
@@ -234,9 +236,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxDistortionEffect
diff --git a/al/effects/echo.cpp b/al/effects/echo.cpp
index f54e4f31..b2e45091 100644
--- a/al/effects/echo.cpp
+++ b/al/effects/echo.cpp
@@ -145,6 +145,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXECHOPROPERTIES eax_{};
@@ -230,8 +232,6 @@ private:
const EaxEaxCall& eax_call);
- bool apply_deferred();
-
bool set(
const EaxEaxCall& eax_call);
}; // EaxEchoEffect
diff --git a/al/effects/equalizer.cpp b/al/effects/equalizer.cpp
index 43597972..8cd59cd1 100644
--- a/al/effects/equalizer.cpp
+++ b/al/effects/equalizer.cpp
@@ -208,6 +208,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXEQUALIZERPROPERTIES eax_{};
@@ -349,9 +351,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxEqualizerEffect
diff --git a/al/effects/fshifter.cpp b/al/effects/fshifter.cpp
index 0100a864..8ad48ab3 100644
--- a/al/effects/fshifter.cpp
+++ b/al/effects/fshifter.cpp
@@ -164,6 +164,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXFREQUENCYSHIFTERPROPERTIES eax_{};
@@ -228,9 +230,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxFrequencyShifterEffect
diff --git a/al/effects/modulator.cpp b/al/effects/modulator.cpp
index ec7520e2..a1521d26 100644
--- a/al/effects/modulator.cpp
+++ b/al/effects/modulator.cpp
@@ -170,6 +170,8 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
private:
EAXRINGMODULATORPROPERTIES eax_{};
@@ -234,9 +236,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxRingModulatorEffect
diff --git a/al/effects/null.cpp b/al/effects/null.cpp
index 78c0a61a..5602280b 100644
--- a/al/effects/null.cpp
+++ b/al/effects/null.cpp
@@ -109,6 +109,9 @@ public:
// [[nodiscard]]
bool dispatch(
const EaxEaxCall& eax_call) override;
+
+ // [[nodiscard]]
+ bool apply_deferred() override;
}; // EaxNullEffect
@@ -142,6 +145,11 @@ bool EaxNullEffect::dispatch(
return false;
}
+bool EaxNullEffect::apply_deferred()
+{
+ return false;
+}
+
} // namespace
EaxEffectUPtr eax_create_eax_null_effect()
diff --git a/al/effects/pshifter.cpp b/al/effects/pshifter.cpp
index 6c45ab4e..a2b06078 100644
--- a/al/effects/pshifter.cpp
+++ b/al/effects/pshifter.cpp
@@ -114,6 +114,9 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
+
private:
EAXPITCHSHIFTERPROPERTIES eax_{};
EAXPITCHSHIFTERPROPERTIES eax_d_{};
@@ -166,9 +169,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxPitchShifterEffect
diff --git a/al/effects/reverb.cpp b/al/effects/reverb.cpp
index 46fa0256..18760b5b 100644
--- a/al/effects/reverb.cpp
+++ b/al/effects/reverb.cpp
@@ -610,6 +610,9 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
+
private:
EAX_REVERBPROPERTIES eax1_{};
EAXREVERBPROPERTIES eax_{};
@@ -933,9 +936,6 @@ private:
bool v1_set(const EaxEaxCall& eax_call);
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxReverbEffect
diff --git a/al/effects/vmorpher.cpp b/al/effects/vmorpher.cpp
index 3081201c..15f099b1 100644
--- a/al/effects/vmorpher.cpp
+++ b/al/effects/vmorpher.cpp
@@ -285,6 +285,9 @@ public:
bool dispatch(
const EaxEaxCall& eax_call) override;
+ // [[nodiscard]]
+ bool apply_deferred() override;
+
private:
EAXVOCALMORPHERPROPERTIES eax_{};
EAXVOCALMORPHERPROPERTIES eax_d_{};
@@ -381,9 +384,6 @@ private:
// [[nodiscard]]
- bool apply_deferred();
-
- // [[nodiscard]]
bool set(
const EaxEaxCall& eax_call);
}; // EaxVocalMorpherEffect