2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
|
2018-07-15 04:57:41 +02:00
|
|
|
{
|
|
|
|
class MemoryPoolContext
|
|
|
|
{
|
|
|
|
public MemoryPoolOut OutStatus;
|
|
|
|
|
|
|
|
public MemoryPoolContext()
|
|
|
|
{
|
|
|
|
OutStatus.State = MemoryPoolState.Detached;
|
|
|
|
}
|
|
|
|
}
|
2019-07-14 21:04:38 +02:00
|
|
|
}
|