Address gdkchan's comment

This commit is contained in:
Mary 2023-01-02 12:27:04 +01:00
parent 2a9b82a9f4
commit a91eafc480

View file

@ -1,16 +0,0 @@
namespace Ryujinx.Graphics.Nvdec
{
public readonly struct FrameDecodedEventArgs
{
public ApplicationId ApplicationId { get; }
public uint LumaOffset { get; }
public uint ChromaOffset { get; }
internal FrameDecodedEventArgs(ApplicationId applicationId, uint lumaOffset, uint chromaOffset)
{
ApplicationId = applicationId;
LumaOffset = lumaOffset;
ChromaOffset = chromaOffset;
}
}
}