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