diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-01-01 20:14:18 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | a11f6f52350e2cd1ba80fb45a3e69194cdc605b5 (patch) | |
| tree | f9f90791e6e1ae446015b4184c0c19173e7510a9 /Ryujinx.Graphics.Gpu/Image/Pool.cs | |
| parent | 23d85167635fe5e3185098aab05d1c33b919e5ac (diff) | |
Fix some spelling mistakes
Thanks to LDj3SNuD for spotting these
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/Pool.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/Pool.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/Pool.cs b/Ryujinx.Graphics.Gpu/Image/Pool.cs index e4cefe9c..7cf06d0b 100644 --- a/Ryujinx.Graphics.Gpu/Image/Pool.cs +++ b/Ryujinx.Graphics.Gpu/Image/Pool.cs @@ -6,7 +6,7 @@ namespace Ryujinx.Graphics.Gpu.Image /// <summary> /// Represents a pool of GPU resources, such as samplers or textures. /// </summary> - /// <typeparam name="T">GPU resource type</typeparam> + /// <typeparam name="T">Type of the GPU resource</typeparam> abstract class Pool<T> : IDisposable { protected const int DescriptorSize = 0x20; @@ -57,7 +57,7 @@ namespace Ryujinx.Graphics.Gpu.Image /// <summary> /// Synchronizes host memory with guest memory. - /// This causes a invalidation of pool entries, + /// This causes invalidation of pool entries, /// if a modification of entries by the CPU is detected. /// </summary> public void SynchronizeMemory() |
