diff options
author | Ikko Eltociear Ashimine <eltociear@gmail.com> | 2023-05-06 05:17:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 22:17:36 +0200 |
commit | f8ec878796f194e56cf6a258577ec0f2edd213ef (patch) | |
tree | bc1eca36edf1f4ea1494d69651a3cdeb8206fa6b /src | |
parent | 9ff21f9ab6b81b8a36227e76595da6ed61c5bf53 (diff) |
Fix typo in TextureBindingsManager.cs (#4798)1.1.757
accomodate -> accommodate
Diffstat (limited to 'src')
-rw-r--r-- | src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs index bbfb704d..b08fb3eb 100644 --- a/src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs +++ b/src/Ryujinx.Graphics.Gpu/Image/TextureBindingsManager.cs @@ -537,7 +537,7 @@ namespace Ryujinx.Graphics.Gpu.Image if (hostTexture != null && texture.Target == Target.TextureBuffer) { // Ensure that the buffer texture is using the correct buffer as storage. - // Buffers are frequently re-created to accomodate larger data, so we need to re-bind + // Buffers are frequently re-created to accommodate larger data, so we need to re-bind // to ensure we're not using a old buffer that was already deleted. _channel.BufferManager.SetBufferTextureStorage(stage, hostTexture, texture.Range.GetSubRange(0).Address, texture.Size, bindingInfo, bindingInfo.Format, false); @@ -666,7 +666,7 @@ namespace Ryujinx.Graphics.Gpu.Image if (hostTexture != null && texture.Target == Target.TextureBuffer) { // Ensure that the buffer texture is using the correct buffer as storage. - // Buffers are frequently re-created to accomodate larger data, so we need to re-bind + // Buffers are frequently re-created to accommodate larger data, so we need to re-bind // to ensure we're not using a old buffer that was already deleted. Format format = bindingInfo.Format; @@ -879,4 +879,4 @@ namespace Ryujinx.Graphics.Gpu.Image Array.Clear(_imageState); } } -}
\ No newline at end of file +} |