aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image')
-rw-r--r--Ryujinx.Graphics.Gpu/Image/Texture.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/Texture.cs b/Ryujinx.Graphics.Gpu/Image/Texture.cs
index cc7e7bf6..28ad3f77 100644
--- a/Ryujinx.Graphics.Gpu/Image/Texture.cs
+++ b/Ryujinx.Graphics.Gpu/Image/Texture.cs
@@ -253,7 +253,7 @@ namespace Ryujinx.Graphics.Gpu.Image
if (!_context.Capabilities.SupportsAstcCompression && _info.FormatInfo.Format.IsAstc())
{
- data = AstcDecoder.DecodeToRgba8(
+ if (!AstcDecoder.TryDecodeToRgba8(
data,
_info.FormatInfo.BlockWidth,
_info.FormatInfo.BlockHeight,
@@ -261,7 +261,13 @@ namespace Ryujinx.Graphics.Gpu.Image
_info.Width,
_info.Height,
_depth,
- _info.Levels);
+ _info.Levels,
+ out Span<byte> decoded))
+ {
+ // TODO: Error.
+ }
+
+ data = decoded;
}
HostTexture.SetData(data);