mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-17 07:52:42 +00:00
Move solution and projects to src
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using Ryujinx.HLE.HOS.Kernel.Threading;
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRenderer
|
||||
{
|
||||
interface IAudioRenderer : IDisposable
|
||||
{
|
||||
uint GetSampleRate();
|
||||
uint GetSampleCount();
|
||||
uint GetMixBufferCount();
|
||||
int GetState();
|
||||
ResultCode RequestUpdate(Memory<byte> output, Memory<byte> performanceOutput, ReadOnlyMemory<byte> input);
|
||||
ResultCode Start();
|
||||
ResultCode Stop();
|
||||
ResultCode QuerySystemEvent(out KEvent systemEvent);
|
||||
void SetRenderingTimeLimit(uint percent);
|
||||
uint GetRenderingTimeLimit();
|
||||
ResultCode ExecuteAudioRendererRendering();
|
||||
void SetVoiceDropParameter(float voiceDropParameter);
|
||||
float GetVoiceDropParameter();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user