mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-15 19:51:42 +00:00
19 lines
380 B
C#
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;
|
|
}
|
|
}
|
|
}
|