aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs')
-rw-r--r--src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs
index aed3268a..cf783ef2 100644
--- a/src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs
+++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferBounds.cs
@@ -1,12 +1,13 @@
using Ryujinx.Graphics.Shader;
using Ryujinx.Memory.Range;
+using System;
namespace Ryujinx.Graphics.Gpu.Memory
{
/// <summary>
/// Memory range used for buffers.
/// </summary>
- readonly struct BufferBounds
+ readonly struct BufferBounds : IEquatable<BufferBounds>
{
/// <summary>
/// Physical memory ranges where the buffer is mapped.
@@ -33,5 +34,25 @@ namespace Ryujinx.Graphics.Gpu.Memory
Range = range;
Flags = flags;
}
+
+ public override bool Equals(object obj)
+ {
+ return obj is BufferBounds bounds && Equals(bounds);
+ }
+
+ public bool Equals(BufferBounds bounds)
+ {
+ return Range == bounds.Range && Flags == bounds.Flags;
+ }
+
+ public bool Equals(ref BufferBounds bounds)
+ {
+ return Range == bounds.Range && Flags == bounds.Flags;
+ }
+
+ public override int GetHashCode()
+ {
+ return HashCode.Combine(Range, Flags);
+ }
}
}