blob: 6aa7fb7fd9622dc1e49386f5ef24d46ca96a1700 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Ryujinx.Graphics.Video
{
public ref struct Vp8PictureInfo
{
public bool KeyFrame;
public uint FirstPartSize;
public uint Version;
public ushort FrameWidth;
public ushort FrameHeight;
}
}
|