🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
432 B

#ifndef BACKENDS_QSA_H
#define BACKENDS_QSA_H
#include "backends/base.h"
struct QSABackendFactory final : public BackendFactory {
public:
bool init() override;
bool querySupport(BackendType type) override;
void probe(DevProbe type, std::string *outnames) override;
BackendPtr createBackend(ALCdevice *device, BackendType type) override;
static BackendFactory &getFactory();
};
#endif /* BACKENDS_QSA_H */