mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-09-27 23:01:56 +00:00
12 lines
252 B
C#
12 lines
252 B
C#
namespace Ryujinx.Graphics.Video
|
|
{
|
|
public ref struct Vp8PictureInfo
|
|
{
|
|
public bool KeyFrame;
|
|
public uint FirstPartSize;
|
|
public uint Version;
|
|
public ushort FrameWidth;
|
|
public ushort FrameHeight;
|
|
}
|
|
}
|