mirror of
https://github.com/love2d/megasource.git
synced 2026-08-19 20:20:11 +02:00
update OpenAL-Soft to 1.24.3.
This commit is contained in:
@@ -1,21 +1,27 @@
|
||||
#ifndef BACKENDS_PULSEAUDIO_H
|
||||
#define BACKENDS_PULSEAUDIO_H
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "alc/events.h"
|
||||
#include "base.h"
|
||||
|
||||
struct DeviceBase;
|
||||
|
||||
class PulseBackendFactory final : public BackendFactory {
|
||||
public:
|
||||
bool init() override;
|
||||
auto init() -> bool final;
|
||||
|
||||
bool querySupport(BackendType type) override;
|
||||
auto querySupport(BackendType type) -> bool final;
|
||||
|
||||
alc::EventSupport queryEventSupport(alc::EventType eventType, BackendType type) override;
|
||||
auto queryEventSupport(alc::EventType eventType, BackendType type) -> alc::EventSupport final;
|
||||
|
||||
std::string probe(BackendType type) override;
|
||||
auto enumerate(BackendType type) -> std::vector<std::string> final;
|
||||
|
||||
BackendPtr createBackend(DeviceBase *device, BackendType type) override;
|
||||
auto createBackend(DeviceBase *device, BackendType type) -> BackendPtr final;
|
||||
|
||||
static BackendFactory &getFactory();
|
||||
static auto getFactory() -> BackendFactory&;
|
||||
};
|
||||
|
||||
#endif /* BACKENDS_PULSEAUDIO_H */
|
||||
|
||||
Reference in New Issue
Block a user