2019-10-13 08:02:07 +02:00
|
|
|
using System;
|
|
|
|
|
2019-11-14 19:26:40 +01:00
|
|
|
namespace Ryujinx.Graphics.Gpu.Shader
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2019-12-31 05:46:57 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Shader code addresses in memory for each shader stage.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
struct ShaderAddresses : IEquatable<ShaderAddresses>
|
|
|
|
{
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning disable CS0649
|
2019-10-13 08:02:07 +02:00
|
|
|
public ulong VertexA;
|
|
|
|
public ulong Vertex;
|
|
|
|
public ulong TessControl;
|
|
|
|
public ulong TessEvaluation;
|
|
|
|
public ulong Geometry;
|
|
|
|
public ulong Fragment;
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning restore CS0649
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-12-31 05:46:57 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Check if the addresses are equal.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="other">Shader addresses structure to compare with</param>
|
|
|
|
/// <returns>True if they are equal, false otherwise</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
public override bool Equals(object other)
|
|
|
|
{
|
|
|
|
return other is ShaderAddresses addresses && Equals(addresses);
|
|
|
|
}
|
|
|
|
|
2019-12-31 05:46:57 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Check if the addresses are equal.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="other">Shader addresses structure to compare with</param>
|
|
|
|
/// <returns>True if they are equal, false otherwise</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
public bool Equals(ShaderAddresses other)
|
|
|
|
{
|
|
|
|
return VertexA == other.VertexA &&
|
|
|
|
Vertex == other.Vertex &&
|
|
|
|
TessControl == other.TessControl &&
|
|
|
|
TessEvaluation == other.TessEvaluation &&
|
|
|
|
Geometry == other.Geometry &&
|
|
|
|
Fragment == other.Fragment;
|
|
|
|
}
|
|
|
|
|
2019-12-31 05:46:57 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Computes hash code from the addresses.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>Hash code</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
public override int GetHashCode()
|
|
|
|
{
|
|
|
|
return HashCode.Combine(VertexA, Vertex, TessControl, TessEvaluation, Geometry, Fragment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|