diff options
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureManager.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Image/TextureManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureManager.cs b/Ryujinx.Graphics.Gpu/Image/TextureManager.cs index 387e908d..15727191 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureManager.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureManager.cs @@ -245,7 +245,7 @@ namespace Ryujinx.Graphics.Gpu.Image } /// <summary> - /// Tries to find a existing texture, or create a new one if not found. + /// Tries to find an existing texture, or create a new one if not found. /// </summary> /// <param name="copyTexture">Copy texture to find or create</param> /// <returns>The texture</returns> @@ -298,7 +298,7 @@ namespace Ryujinx.Graphics.Gpu.Image } /// <summary> - /// Tries to find a existing texture, or create a new one if not found. + /// Tries to find an existing texture, or create a new one if not found. /// </summary> /// <param name="colorState">Color buffer texture to find or create</param> /// <param name="samplesInX">Number of samples in the X direction, for MSAA</param> @@ -381,7 +381,7 @@ namespace Ryujinx.Graphics.Gpu.Image } /// <summary> - /// Tries to find a existing texture, or create a new one if not found. + /// Tries to find an existing texture, or create a new one if not found. /// </summary> /// <param name="dsState">Depth-stencil buffer texture to find or create</param> /// <param name="size">Size of the depth-stencil texture</param> @@ -430,7 +430,7 @@ namespace Ryujinx.Graphics.Gpu.Image } /// <summary> - /// Tries to find a existing texture, or create a new one if not found. + /// Tries to find an existing texture, or create a new one if not found. /// </summary> /// <param name="info">Texture information of the texture to be found or created</param> /// <param name="flags">The texture search flags, defines texture comparison rules</param> |