mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
19 lines
441 B
C++
19 lines
441 B
C++
#ifndef BACKENDS_PULSEAUDIO_H
|
|
#define BACKENDS_PULSEAUDIO_H
|
|
|
|
#include "backends/base.h"
|
|
|
|
class PulseBackendFactory final : public BackendFactory {
|
|
public:
|
|
bool init() override;
|
|
|
|
bool querySupport(BackendType type) override;
|
|
|
|
std::string probe(BackendType type) override;
|
|
|
|
BackendPtr createBackend(ALCdevice *device, BackendType type) override;
|
|
|
|
static BackendFactory &getFactory();
|
|
};
|
|
|
|
#endif /* BACKENDS_PULSEAUDIO_H */
|