aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOFormat.cs
diff options
context:
space:
mode:
authorMary-nyan <mary@mary.zone>2022-12-11 00:57:01 +0100
committerGitHub <noreply@github.com>2022-12-11 00:57:01 +0100
commit403e67d9835b7412022ff4d98685f83590641c88 (patch)
tree5d86f83be23c065edfa92329570cf37d64c1f4d6 /Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOFormat.cs
parentc6f1908e0f07b6dd4b60cbe333a9b5f1adec276b (diff)
audio: Rewrite SoundIo bindings (#4088)
* audio: Rewrite SoundIo bindings This rewrite SoundIo bindings to be safer and not a pedantic autogenerated mess. * Address comments * Switch DllImport to LibraryImport * Address gdkchan's comment
Diffstat (limited to 'Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOFormat.cs')
-rw-r--r--Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOFormat.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOFormat.cs b/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOFormat.cs
deleted file mode 100644
index df1b71c6..00000000
--- a/Ryujinx.Audio.Backends.SoundIo/Native/libsoundio/SoundIOFormat.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace SoundIOSharp
-{
- public enum SoundIOFormat
- {
- Invalid,
- S8,
- U8,
- S16LE,
- S16BE,
- U16LE,
- U16BE,
- S24LE,
- S24BE,
- U24LE,
- U24BE,
- S32LE,
- S32BE,
- U32LE,
- U32BE,
- Float32LE,
- Float32BE,
- Float64LE,
- Float64BE
- }
-} \ No newline at end of file