From ba739d4361a3240f29b5f5ad50b34cac13139243 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Mon, 16 Dec 2019 20:39:14 -0600 Subject: [PATCH] Remove ASTC logging --- Ryujinx.Graphics.Gpu/Image/Texture.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Ryujinx.Graphics.Gpu/Image/Texture.cs b/Ryujinx.Graphics.Gpu/Image/Texture.cs index 0ea5245620..b939e0b274 100644 --- a/Ryujinx.Graphics.Gpu/Image/Texture.cs +++ b/Ryujinx.Graphics.Gpu/Image/Texture.cs @@ -246,9 +246,6 @@ namespace Ryujinx.Graphics.Gpu.Image if (!_context.Capabilities.SupportsAstcCompression && _info.FormatInfo.Format.IsAstc()) { - Logger.PrintInfo(LogClass.Gpu, "Decoding ASTC texture"); - var watch = Stopwatch.StartNew(); - if (!AstcDecoder.TryDecodeToRgba8( data.ToArray(), _info.FormatInfo.BlockWidth, @@ -262,10 +259,6 @@ namespace Ryujinx.Graphics.Gpu.Image // TODO: Error. } - watch.Stop(); - - Logger.PrintInfo(LogClass.Gpu, $"Decoded texture in {watch.Elapsed.TotalSeconds} seconds"); - data = decoded; }