aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/backends/base.cpp6
-rw-r--r--Alc/backends/base.h3
2 files changed, 0 insertions, 9 deletions
diff --git a/Alc/backends/base.cpp b/Alc/backends/base.cpp
index 0afc4ee1..5c25b366 100644
--- a/Alc/backends/base.cpp
+++ b/Alc/backends/base.cpp
@@ -11,12 +11,6 @@
#include "backends/base.h"
-void ALCdevice_Lock(ALCdevice *device)
-{ device->Backend->lock(); }
-
-void ALCdevice_Unlock(ALCdevice *device)
-{ device->Backend->unlock(); }
-
ClockLatency GetClockLatency(ALCdevice *device)
{
BackendBase *backend{device->Backend.get()};
diff --git a/Alc/backends/base.h b/Alc/backends/base.h
index 0b3b24fb..81424bef 100644
--- a/Alc/backends/base.h
+++ b/Alc/backends/base.h
@@ -27,9 +27,6 @@ inline std::chrono::nanoseconds GetDeviceClockTime(ALCdevice *device)
return device->ClockBase + ns;
}
-void ALCdevice_Lock(ALCdevice *device);
-void ALCdevice_Unlock(ALCdevice *device);
-
ClockLatency GetClockLatency(ALCdevice *device);
struct BackendBase {