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