aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-01-01 20:14:18 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commita11f6f52350e2cd1ba80fb45a3e69194cdc605b5 (patch)
treef9f90791e6e1ae446015b4184c0c19173e7510a9 /Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
parent23d85167635fe5e3185098aab05d1c33b919e5ac (diff)
Fix some spelling mistakes
Thanks to LDj3SNuD for spotting these
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Memory/BufferManager.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Memory/BufferManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs b/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
index de56baca..0acbd94a 100644
--- a/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
+++ b/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs
@@ -368,7 +368,7 @@ namespace Ryujinx.Graphics.Gpu.Memory
/// Gets the address of the compute uniform buffer currently bound at the given index.
/// </summary>
/// <param name="index">Index of the uniform buffer binding</param>
- /// <returns>The uniform buffer address, or a undefined value if the buffer is not currently bound</returns>
+ /// <returns>The uniform buffer address, or an undefined value if the buffer is not currently bound</returns>
public ulong GetComputeUniformBufferAddress(int index)
{
return _cpUniformBuffers.Buffers[index].Address;
@@ -379,7 +379,7 @@ namespace Ryujinx.Graphics.Gpu.Memory
/// </summary>
/// <param name="stage">Index of the shader stage</param>
/// <param name="index">Index of the uniform buffer binding</param>
- /// <returns>The uniform buffer address, or a undefined value if the buffer is not currently bound</returns>
+ /// <returns>The uniform buffer address, or an undefined value if the buffer is not currently bound</returns>
public ulong GetGraphicsUniformBufferAddress(int stage, int index)
{
return _gpUniformBuffers[stage].Buffers[index].Address;