diff options
author | gdkchan <gab.dark.100@gmail.com> | 2022-06-23 21:41:57 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-24 02:41:57 +0200 |
commit | e747f5cd836b73661414134b182fc50121e56865 (patch) | |
tree | efaea2ff6ea098ed4f1e0dca35a421020f57ac52 /Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs | |
parent | 8aff17a93c27dea7339c20f9cf73535e110ffb72 (diff) |
Ensure texture ID is valid before getting texture descriptor (#3406)1.1.154
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs b/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs index 91cadde3..a990528e 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs @@ -738,7 +738,22 @@ namespace Ryujinx.Graphics.Gpu.Image TexturePool texturePool = _texturePoolCache.FindOrCreate(_channel, poolAddress, maximumId); - return texturePool.GetDescriptor(textureId); + TextureDescriptor descriptor; + + if (texturePool.IsValidId(textureId)) + { + descriptor = texturePool.GetDescriptor(textureId); + } + else + { + // If the ID is not valid, we just return a default descriptor with the most common state. + // Since this is used for shader specialization, doing so might avoid the need for recompilations. + descriptor = new TextureDescriptor(); + descriptor.Word4 |= (uint)TextureTarget.Texture2D << 23; + descriptor.Word5 |= 1u << 31; // Coords normalized. + } + + return descriptor; } /// <summary> |