mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-20 13:55:54 +01:00
f95b7c5877
* Fix incorrect fragment origin when YNegate is enabled * Shader cache version bump * Do not update support buffer if shader does not read gl_FragCoord * Pass unscaled viewport size to the support buffer
90 lines
3.5 KiB
C#
90 lines
3.5 KiB
C#
using Ryujinx.Common.Memory;
|
|
using Ryujinx.Graphics.Shader.StructuredIr;
|
|
using Ryujinx.Graphics.Shader.Translation;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Graphics.Shader
|
|
{
|
|
public struct Vector4<T>
|
|
{
|
|
public T X;
|
|
public T Y;
|
|
public T Z;
|
|
public T W;
|
|
}
|
|
|
|
enum SupportBufferField
|
|
{
|
|
// Must match the order of the fields on the struct.
|
|
FragmentAlphaTest,
|
|
FragmentIsBgra,
|
|
ViewportInverse,
|
|
ViewportSize,
|
|
FragmentRenderScaleCount,
|
|
RenderScale,
|
|
}
|
|
|
|
public struct SupportBuffer
|
|
{
|
|
internal const int Binding = 0;
|
|
|
|
public static readonly int FieldSize;
|
|
public static readonly int RequiredSize;
|
|
|
|
public static readonly int FragmentAlphaTestOffset;
|
|
public static readonly int FragmentIsBgraOffset;
|
|
public static readonly int ViewportInverseOffset;
|
|
public static readonly int ViewportSizeOffset;
|
|
public static readonly int FragmentRenderScaleCountOffset;
|
|
public static readonly int GraphicsRenderScaleOffset;
|
|
public static readonly int ComputeRenderScaleOffset;
|
|
|
|
public const int FragmentIsBgraCount = 8;
|
|
// One for the render target, 64 for the textures, and 8 for the images.
|
|
public const int RenderScaleMaxCount = 1 + 64 + 8;
|
|
|
|
private static int OffsetOf<T>(ref SupportBuffer storage, ref T target)
|
|
{
|
|
return (int)Unsafe.ByteOffset(ref Unsafe.As<SupportBuffer, T>(ref storage), ref target);
|
|
}
|
|
|
|
static SupportBuffer()
|
|
{
|
|
FieldSize = Unsafe.SizeOf<Vector4<float>>();
|
|
RequiredSize = Unsafe.SizeOf<SupportBuffer>();
|
|
|
|
SupportBuffer instance = new();
|
|
|
|
FragmentAlphaTestOffset = OffsetOf(ref instance, ref instance.FragmentAlphaTest);
|
|
FragmentIsBgraOffset = OffsetOf(ref instance, ref instance.FragmentIsBgra);
|
|
ViewportInverseOffset = OffsetOf(ref instance, ref instance.ViewportInverse);
|
|
ViewportSizeOffset = OffsetOf(ref instance, ref instance.ViewportSize);
|
|
FragmentRenderScaleCountOffset = OffsetOf(ref instance, ref instance.FragmentRenderScaleCount);
|
|
GraphicsRenderScaleOffset = OffsetOf(ref instance, ref instance.RenderScale);
|
|
ComputeRenderScaleOffset = GraphicsRenderScaleOffset + FieldSize;
|
|
}
|
|
|
|
internal static StructureType GetStructureType()
|
|
{
|
|
return new StructureType(new[]
|
|
{
|
|
new StructureField(AggregateType.U32, "s_alpha_test"),
|
|
new StructureField(AggregateType.Array | AggregateType.U32, "s_is_bgra", FragmentIsBgraCount),
|
|
new StructureField(AggregateType.Vector4 | AggregateType.FP32, "s_viewport_inverse"),
|
|
new StructureField(AggregateType.Vector4 | AggregateType.FP32, "s_viewport_size"),
|
|
new StructureField(AggregateType.S32, "s_frag_scale_count"),
|
|
new StructureField(AggregateType.Array | AggregateType.FP32, "s_render_scale", RenderScaleMaxCount),
|
|
});
|
|
}
|
|
|
|
public Vector4<int> FragmentAlphaTest;
|
|
public Array8<Vector4<int>> FragmentIsBgra;
|
|
public Vector4<float> ViewportInverse;
|
|
public Vector4<float> ViewportSize;
|
|
public Vector4<int> FragmentRenderScaleCount;
|
|
|
|
// Render scale max count: 1 + 64 + 8. First scale is fragment output scale, others are textures/image inputs.
|
|
public Array73<Vector4<float>> RenderScale;
|
|
}
|
|
}
|