using Ryujinx.Common.Memory; using System.Runtime.InteropServices; namespace Ryujinx.HLE.HOS.Services.Vi.RootService.ApplicationDisplayService.Types { [StructLayout(LayoutKind.Sequential, Size = 0x60)] struct DisplayInfo { public Array40 Name; public bool LayerLimitEnabled; public Array7 Padding; public ulong LayerLimitMax; public ulong Width; public ulong Height; } }