mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-15 19:11:08 +00:00
See merge request ryubing/ryujinx!252 THIS IS CURRENTLY NOT EXPOSED BY THE UI OR HANDLED BY THE EMULATOR. Expect a commit later to add it to configs, UI, etc.
17 lines
422 B
C#
17 lines
422 B
C#
namespace Ryujinx.Audio.Backends.Apple
|
|
{
|
|
class AppleAudioBuffer
|
|
{
|
|
public readonly ulong DriverIdentifier;
|
|
public readonly ulong SampleCount;
|
|
public ulong SamplePlayed;
|
|
|
|
public AppleAudioBuffer(ulong driverIdentifier, ulong sampleCount)
|
|
{
|
|
DriverIdentifier = driverIdentifier;
|
|
SampleCount = sampleCount;
|
|
SamplePlayed = 0;
|
|
}
|
|
}
|
|
}
|