This commit is contained in:
Michael Durrant 2023-06-11 11:27:53 -06:00
parent 5813b2e354
commit 18231cc9da
4 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,37 @@
using NUnit.Framework;
using Ryujinx.Graphics.Gpu;
using Ryujinx.Graphics.Texture.Astc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ryujinx.Tests.Graphics
{
public class AstcDecoderTests
{
private const int ASTCBlockSize;
[SetUp]
public void SetupFixture()
{
}
[Test]
public void _Test()
{
var inputData = GetTestData();
var outputBuffer = new Memory<byte>();
GraphicsConfig.EnableTextureRecompression = false;
AstcDecoder.TryDecodeToRgba8P()
AstcDecoder target = new AstcDecoder();
}
private ReadOnlyMemory<byte> GetTestData();
}
}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 997 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 719 KiB