mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-22 06:32:05 +00:00
Some checks failed
Canary CI / Release for linux-arm64 (push) Has been cancelled
Canary CI / Release for linux-x64 (push) Has been cancelled
Canary CI / Release for win-x64 (push) Has been cancelled
Canary CI / Release MacOS universal (push) Has been cancelled
Canary CI / Create GitLab Release (push) Has been cancelled
See merge request ryubing/ryujinx!242
12 lines
296 B
C#
12 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);
|
|
}
|
|
}
|
|
}
|