Evan Husted 80d619f010 Revert "Revert the Metal Experiment (#701)"
This reverts commit fe1617ffeae0edd58bf61b1e008304e1221a1f7d.
2025-02-22 21:33:38 -06:00

19 lines
380 B
C#

namespace Ryujinx.Graphics.GAL
{
public readonly struct ComputeSize
{
public readonly static ComputeSize VtgAsCompute = new(32, 32, 1);
public readonly int X;
public readonly int Y;
public readonly int Z;
public ComputeSize(int x, int y, int z)
{
X = x;
Y = y;
Z = z;
}
}
}