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