mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-02-19 23:31:07 +00:00
13 lines
296 B
C#
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);
|
|
}
|
|
}
|
|
}
|