1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-27 18:16:47 -06:00
ryujinx/Ryujinx.Graphics.Nvdec/FrameDecodedEventArgs.cs

17 lines
445 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Nvdec
{
public readonly struct FrameDecodedEventArgs
{
public CodecId CodecId { get; }
public uint LumaOffset { get; }
public uint ChromaOffset { get; }
internal FrameDecodedEventArgs(CodecId codecId, uint lumaOffset, uint chromaOffset)
{
CodecId = codecId;
LumaOffset = lumaOffset;
ChromaOffset = chromaOffset;
}
}
}