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; }