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