aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Video/Plane.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Video/Plane.cs')
-rw-r--r--Ryujinx.Graphics.Video/Plane.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Video/Plane.cs b/Ryujinx.Graphics.Video/Plane.cs
new file mode 100644
index 00000000..c0aca59c
--- /dev/null
+++ b/Ryujinx.Graphics.Video/Plane.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Diagnostics.CodeAnalysis;
+
+namespace Ryujinx.Graphics.Video
+{
+ public struct Plane : IEquatable<Plane>
+ {
+ public IntPtr Pointer { get; }
+ public int Length { get; }
+
+ public Plane(IntPtr pointer, int length)
+ {
+ Pointer = pointer;
+ Length = length;
+ }
+
+ public override bool Equals(object obj)
+ {
+ return obj is Plane other && Equals(other);
+ }
+
+ public bool Equals([AllowNull] Plane other)
+ {
+ return Pointer == other.Pointer && Length == other.Length;
+ }
+
+ public override int GetHashCode()
+ {
+ return HashCode.Combine(Pointer, Length);
+ }
+
+ public static bool operator ==(Plane left, Plane right)
+ {
+ return left.Equals(right);
+ }
+
+ public static bool operator !=(Plane left, Plane right)
+ {
+ return !(left == right);
+ }
+ }
+}