
* Update audio renderer to REV12: Add support for splitter biquad filter * Formatting * Official names * Update BiquadFilterState size + other fixes * Update tests * Update comment for version 2 * Size test for SplitterDestinationVersion2 * Should use Volume1 if no ramp
17 lines
441 B
C#
17 lines
441 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Server.Splitter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Server
|
|
{
|
|
class SplitterDestinationTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0xE0, Unsafe.SizeOf<SplitterDestinationVersion1>());
|
|
Assert.AreEqual(0x110, Unsafe.SizeOf<SplitterDestinationVersion2>());
|
|
}
|
|
}
|
|
}
|