diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2023-01-10 22:53:56 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-11 01:53:56 +0000 |
| commit | 94a64f2aea3225d83a2aa1e61ed8d4bf8be49e5c (patch) | |
| tree | a41eb88177d15974808d4e06674113880e6e66e6 /Ryujinx.Graphics.Gpu/Image/TextureGroup.cs | |
| parent | 2355c2af62282ff36e56106495c09ed5cfcc3672 (diff) | |
Remove textures from cache on unmap if not mapped and modified (#4211)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureGroup.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/TextureGroup.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs b/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs index ca54dc2f..cd17564a 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureGroup.cs @@ -435,6 +435,32 @@ namespace Ryujinx.Graphics.Gpu.Image } /// <summary> + /// Checks if a texture was modified by the GPU. + /// </summary> + /// <param name="texture">The texture to be checked</param> + /// <returns>True if any region of the texture was modified by the GPU, false otherwise</returns> + public bool AnyModified(Texture texture) + { + bool anyModified = false; + + EvaluateRelevantHandles(texture, (baseHandle, regionCount, split) => + { + for (int i = 0; i < regionCount; i++) + { + TextureGroupHandle group = _handles[baseHandle + i]; + + if (group.Modified) + { + anyModified = true; + break; + } + } + }); + + return anyModified; + } + + /// <summary> /// Flush modified ranges for a given texture. /// </summary> /// <param name="texture">The texture being used</param> |
