mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 09:50:17 +00:00
16 lines
457 B
C#
16 lines
457 B
C#
namespace Ryujinx.Graphics.Nvdec
|
|
{
|
|
public readonly struct FrameDecodedEventArgs
|
|
{
|
|
public ApplicationId CodecId { get; }
|
|
public uint LumaOffset { get; }
|
|
public uint ChromaOffset { get; }
|
|
|
|
internal FrameDecodedEventArgs(ApplicationId codecId, uint lumaOffset, uint chromaOffset)
|
|
{
|
|
CodecId = codecId;
|
|
LumaOffset = lumaOffset;
|
|
ChromaOffset = chromaOffset;
|
|
}
|
|
}
|
|
}
|