2018-02-23 21:48:27 +00:00
|
|
|
using System.IO;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Android
|
2018-02-23 21:48:27 +00:00
|
|
|
{
|
|
|
|
struct GbpBuffer
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
public int Magic { get; private set; }
|
|
|
|
public int Width { get; private set; }
|
|
|
|
public int Height { get; private set; }
|
|
|
|
public int Stride { get; private set; }
|
|
|
|
public int Format { get; private set; }
|
|
|
|
public int Usage { get; private set; }
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public int Pid { get; private set; }
|
|
|
|
public int RefCount { get; private set; }
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public int FdsCount { get; private set; }
|
|
|
|
public int IntsCount { get; private set; }
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public byte[] RawData { get; private set; }
|
2018-02-23 21:48:27 +00:00
|
|
|
|
|
|
|
public int Size => RawData.Length + 10 * 4;
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public GbpBuffer(BinaryReader reader)
|
2018-02-23 21:48:27 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
Magic = reader.ReadInt32();
|
|
|
|
Width = reader.ReadInt32();
|
|
|
|
Height = reader.ReadInt32();
|
|
|
|
Stride = reader.ReadInt32();
|
|
|
|
Format = reader.ReadInt32();
|
|
|
|
Usage = reader.ReadInt32();
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Pid = reader.ReadInt32();
|
|
|
|
RefCount = reader.ReadInt32();
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
FdsCount = reader.ReadInt32();
|
|
|
|
IntsCount = reader.ReadInt32();
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
RawData = reader.ReadBytes((FdsCount + IntsCount) * 4);
|
2018-02-23 21:48:27 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public void Write(BinaryWriter writer)
|
2018-02-23 21:48:27 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
writer.Write(Magic);
|
|
|
|
writer.Write(Width);
|
|
|
|
writer.Write(Height);
|
|
|
|
writer.Write(Stride);
|
|
|
|
writer.Write(Format);
|
|
|
|
writer.Write(Usage);
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
writer.Write(Pid);
|
|
|
|
writer.Write(RefCount);
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
writer.Write(FdsCount);
|
|
|
|
writer.Write(IntsCount);
|
2018-02-23 21:48:27 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
writer.Write(RawData);
|
2018-02-23 21:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|