Files
ryujinx/src/Ryujinx.Graphics.RenderDocApi/Capture.cs
2026-01-01 00:10:21 -06:00

13 lines
296 B
C#

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);
}
}
}