Add "fast" variants for the bsinc resamplers
[openal-soft.git] / alc / backends / sdl2.h
blob041d47eef92adacec193ae52e0a301e3b2bad966
1 #ifndef BACKENDS_SDL2_H
2 #define BACKENDS_SDL2_H
4 #include "backends/base.h"
6 struct SDL2BackendFactory final : public BackendFactory {
7 public:
8 bool init() override;
10 bool querySupport(BackendType type) override;
12 void probe(DevProbe type, std::string *outnames) override;
14 BackendPtr createBackend(ALCdevice *device, BackendType type) override;
16 static BackendFactory &getFactory();
19 #endif /* BACKENDS_SDL2_H */