Limit convolution processing to the output ambisonic order
[openal-soft.git] / alc / backends / null.h
blob8e9c59e508571636e846c1c9753a2f5e70b8929b
1 #ifndef BACKENDS_NULL_H
2 #define BACKENDS_NULL_H
4 #include "backends/base.h"
6 struct NullBackendFactory 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_NULL_H */