Limit convolution processing to the output ambisonic order
[openal-soft.git] / alc / backends / dsound.h
blob83f7d5c77629a549e167d5be95cd525f5fab849e
1 #ifndef BACKENDS_DSOUND_H
2 #define BACKENDS_DSOUND_H
4 #include "backends/base.h"
6 struct DSoundBackendFactory final : public BackendFactory {
7 public:
8 bool init() override;
10 bool querySupport(BackendType type) override;
12 std::string probe(BackendType type) override;
14 BackendPtr createBackend(ALCdevice *device, BackendType type) override;
16 static BackendFactory &getFactory();
19 #endif /* BACKENDS_DSOUND_H */