sdl3 audio

This commit is contained in:
madwind
2025-01-15 17:23:03 +08:00
parent 0bd62888a0
commit fbc5ccfa2c
9 changed files with 43 additions and 133 deletions

View File

@@ -1,16 +0,0 @@
namespace Ryujinx.Audio.Backends.SDL3
{
class SDL3AudioBuffer
{
public readonly ulong DriverIdentifier;
public readonly ulong SampleCount;
public ulong SamplePlayed;
public SDL3AudioBuffer(ulong driverIdentifier, ulong sampleCount)
{
DriverIdentifier = driverIdentifier;
SampleCount = sampleCount;
SamplePlayed = 0;
}
}
}