/ src / Ryujinx.Audio.Backends.SoundIo / SoundIoAudioBuffer.cs
SoundIoAudioBuffer.cs
 1  namespace Ryujinx.Audio.Backends.SoundIo
 2  {
 3      class SoundIoAudioBuffer
 4      {
 5          public readonly ulong DriverIdentifier;
 6          public readonly ulong SampleCount;
 7          public ulong SamplePlayed;
 8  
 9          public SoundIoAudioBuffer(ulong driverIdentifier, ulong sampleCount)
10          {
11              DriverIdentifier = driverIdentifier;
12              SampleCount = sampleCount;
13              SamplePlayed = 0;
14          }
15      }
16  }