diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2024-04-03 21:30:46 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-03 21:30:46 -0300 |
| commit | 8e74fa34560c4a8c3de234eb3488e1d0fb6f8f6c (patch) | |
| tree | 313e5f9160f9b976ea8c28118244202d02442e12 /src/Ryujinx.Graphics.Gpu/Image/Texture.cs | |
| parent | 6208c3e6f0b74873aae2ce49df8e89952ae61c5a (diff) | |
Stop clearing Modified flag on DiscardData (#6591)
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Image/Texture.cs')
| -rw-r--r-- | src/Ryujinx.Graphics.Gpu/Image/Texture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Image/Texture.cs b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs index f1615b38..7a043b2b 100644 --- a/src/Ryujinx.Graphics.Gpu/Image/Texture.cs +++ b/src/Ryujinx.Graphics.Gpu/Image/Texture.cs @@ -573,7 +573,7 @@ namespace Ryujinx.Graphics.Gpu.Image /// <summary> /// Discards all data for this texture. - /// This clears all dirty flags, modified flags, and pending copies from other textures. + /// This clears all dirty flags and pending copies from other textures. /// It should be used if the texture data will be fully overwritten by the next use. /// </summary> public void DiscardData() |
