aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Video/Plane.cs
blob: c0aca59cd8af8505f254d05886c552e10345aaa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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);
        }
    }
}