Vp8PictureInfo.cs 251 B

1234567891011
  1. namespace Ryujinx.Graphics.Video
  2. {
  3. public ref struct Vp8PictureInfo
  4. {
  5. public bool KeyFrame;
  6. public uint FirstPartSize;
  7. public uint Version;
  8. public ushort FrameWidth;
  9. public ushort FrameHeight;
  10. }
  11. }