Remove ASTC logging
This commit is contained in:
parent
98fc3c2f59
commit
ba739d4361
1 changed files with 0 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue