From 430faeb8ef9a5906af642a4a2be0eb6e878f812e Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 31 Dec 2019 01:46:57 -0300 Subject: Add XML documentation to Ryujinx.Graphics.Gpu.Shader --- Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs | 4 ++-- Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs | 2 +- Ryujinx.Graphics.Gpu/Memory/RangeList.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'Ryujinx.Graphics.Gpu/Memory') diff --git a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs b/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs index d4d9b48a..62ab0e47 100644 --- a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs +++ b/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs @@ -44,7 +44,7 @@ namespace Ryujinx.Graphics.Gpu.Memory /// CPU virtual address to map into /// GPU virtual address to be mapped /// Size in bytes of the mapping - /// The GPU virtual address of the mapping + /// GPU virtual address of the mapping public ulong Map(ulong pa, ulong va, ulong size) { lock (_pageTable) @@ -117,7 +117,7 @@ namespace Ryujinx.Graphics.Gpu.Memory /// Reserves memory at a fixed GPU memory location. /// This prevents the reserved region from being used for memory allocation for map. /// - /// CPU virtual address to reserve + /// GPU virtual address to reserve /// Reservation size in bytes /// GPU virtual address of the reservation, or an all ones mask in case of failure public ulong ReserveFixed(ulong va, ulong size) diff --git a/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs b/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs index 7a6b0963..71384df2 100644 --- a/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs +++ b/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs @@ -6,7 +6,7 @@ namespace Ryujinx.Graphics.Gpu.Memory /// /// Represents physical memory, accessible from the GPU. - /// This is actually working CPU virtual addresses, of memory mapped on the game process. + /// This is actually working CPU virtual addresses, of memory mapped on the application process. /// class PhysicalMemory { diff --git a/Ryujinx.Graphics.Gpu/Memory/RangeList.cs b/Ryujinx.Graphics.Gpu/Memory/RangeList.cs index 52bcf9b4..1d185e21 100644 --- a/Ryujinx.Graphics.Gpu/Memory/RangeList.cs +++ b/Ryujinx.Graphics.Gpu/Memory/RangeList.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; namespace Ryujinx.Graphics.Gpu.Memory { /// - /// Lists of GPU resources with data on guest memory. + /// List of GPU resources with data on guest memory. /// /// Type of the GPU resource class RangeList where T : IRange -- cgit v1.2.3