Remove ASTC logging

This commit is contained in:
Alex Barney 2019-12-16 20:39:14 -06:00
parent 98fc3c2f59
commit ba739d4361

View file

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