2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public struct RectangleF
|
|
|
|
{
|
2022-01-11 20:15:17 +01:00
|
|
|
public float X { get; }
|
|
|
|
public float Y { get; }
|
|
|
|
public float Width { get; }
|
2019-10-13 08:02:07 +02:00
|
|
|
public float Height { get; }
|
|
|
|
|
|
|
|
public RectangleF(float x, float y, float width, float height)
|
|
|
|
{
|
2022-01-11 20:15:17 +01:00
|
|
|
X = x;
|
|
|
|
Y = y;
|
|
|
|
Width = width;
|
2019-10-13 08:02:07 +02:00
|
|
|
Height = height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|