Ryujinx/src/Ryujinx.Graphics.RenderDocApi/Capture.cs

13 lines
296 B
C#
Raw Normal View History

using System;
namespace Ryujinx.Graphics.RenderDocApi
{
public readonly record struct Capture(int Index, string FileName, DateTime Timestamp)
{
public void SetComments(string comments)
{
RenderDoc.SetCaptureFileComments(FileName, comments);
}
}
}