aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/TextureManager.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2019-12-30 14:44:22 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commitbacb278dc11292a9a851669a9056b9ea5bb77f3a (patch)
tree734acc3b3f7e579fde40668cb36779412d81a031 /Ryujinx.Graphics.Gpu/Image/TextureManager.cs
parentc5b908891471bfc5c33aad60eb6ad981eb6856db (diff)
Fix typos pointed out by LDj3SNuD
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureManager.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Image/TextureManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureManager.cs b/Ryujinx.Graphics.Gpu/Image/TextureManager.cs
index 4f6d5e58..ecc5dc51 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureManager.cs
+++ b/Ryujinx.Graphics.Gpu/Image/TextureManager.cs
@@ -120,7 +120,7 @@ namespace Ryujinx.Graphics.Gpu.Image
/// </summary>
/// <param name="gpuVa">The start GPU virtual address of the sampler pool</param>
/// <param name="maximumId">The maximum ID of the sampler pool</param>
- /// <param name="samplerIndex">The indexing type of the sampler</param>
+ /// <param name="samplerIndex">The indexing type of the sampler pool</param>
public void SetComputeSamplerPool(ulong gpuVa, int maximumId, SamplerIndex samplerIndex)
{
_cpBindingsManager.SetSamplerPool(gpuVa, maximumId, samplerIndex);
@@ -131,7 +131,7 @@ namespace Ryujinx.Graphics.Gpu.Image
/// </summary>
/// <param name="gpuVa">The start GPU virtual address of the sampler pool</param>
/// <param name="maximumId">The maximum ID of the sampler pool</param>
- /// <param name="samplerIndex">The indexing type of the sampler</param>
+ /// <param name="samplerIndex">The indexing type of the sampler pool</param>
public void SetGraphicsSamplerPool(ulong gpuVa, int maximumId, SamplerIndex samplerIndex)
{
_gpBindingsManager.SetSamplerPool(gpuVa, maximumId, samplerIndex);
@@ -734,7 +734,7 @@ namespace Ryujinx.Graphics.Gpu.Image
}
/// <summary>
- /// Flushes textures in the cache inside a given range that have been modified since the last call.
+ /// Flushes the textures in the cache inside a given range that have been modified since the last call.
/// </summary>
/// <param name="address">The range start address</param>
/// <param name="size">The range size</param>