aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Video/Vp8PictureInfo.cs
blob: 878674b8e2cb7939d086e7c4ea09038131a75d71 (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;
    }
}