mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
update openal
This commit is contained in:
parent
62f3b93ff9
commit
6721a6b021
287 changed files with 33851 additions and 27325 deletions
|
|
@ -5,15 +5,15 @@
|
|||
|
||||
struct NullBackendFactory final : public BackendFactory {
|
||||
public:
|
||||
bool init() override;
|
||||
auto init() -> bool final;
|
||||
|
||||
bool querySupport(BackendType type) override;
|
||||
auto querySupport(BackendType type) -> bool 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_NULL_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue