aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Shader/ShaderAddresses.cs
blob: c0a9162a65ed2a38fdb98e9c7653c2f0f80e4a4c (plain)
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
using System;

namespace Ryujinx.Graphics.Gpu.Shader
{
    struct ShaderAddresses : IEquatable<ShaderAddresses>
    {
        public ulong VertexA;
        public ulong Vertex;
        public ulong TessControl;
        public ulong TessEvaluation;
        public ulong Geometry;
        public ulong Fragment;

        public override bool Equals(object other)
        {
            return other is ShaderAddresses addresses && Equals(addresses);
        }

        public bool Equals(ShaderAddresses other)
        {
            return VertexA        == other.VertexA &&
                   Vertex         == other.Vertex &&
                   TessControl    == other.TessControl &&
                   TessEvaluation == other.TessEvaluation &&
                   Geometry       == other.Geometry &&
                   Fragment       == other.Fragment;
        }

        public override int GetHashCode()
        {
            return HashCode.Combine(VertexA, Vertex, TessControl, TessEvaluation, Geometry, Fragment);
        }
    }
}