diff options
author | Chris Robinson <[email protected]> | 2021-04-27 16:04:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-04-27 16:04:54 -0700 |
commit | 061148072f6bbcda20d57a4512e414c833129479 (patch) | |
tree | 5bf9c8897eec173cb2846924711f2d79f07fbeff /alc/effects/base.h | |
parent | 2571d9bbc4112fb5d330dee38c8c4040c2ade763 (diff) |
Update include headers
Don't add alc/ to the include paths.
Diffstat (limited to 'alc/effects/base.h')
-rw-r--r-- | alc/effects/base.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/alc/effects/base.h b/alc/effects/base.h index 6c31ae0c..1fb339aa 100644 --- a/alc/effects/base.h +++ b/alc/effects/base.h @@ -1,18 +1,21 @@ #ifndef EFFECTS_BASE_H #define EFFECTS_BASE_H -#include <cstddef> +#include <stddef.h> #include "albyte.h" -#include "alcmain.h" #include "almalloc.h" #include "alspan.h" #include "atomic.h" +#include "core/bufferline.h" #include "intrusive_ptr.h" +struct BufferStorage; struct ContextBase; +struct DeviceBase; struct EffectSlot; -struct BufferStorage; +struct MixParams; +struct RealMixParams; /** Target gain for the reverb decay feedback reaching the decay time. */ |