mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-22 22:52:33 +00:00
* 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
16 lines
441 B
C#
16 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>());
|
|
}
|
|
}
|
|
}
|