blob: deacd8ccce3aa9f2ff48f07f54906819b3347489 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
namespace Ryujinx.Audio.Renderer.Server.Performance
{
/// <summary>
/// The header of a performance frame.
/// </summary>
public interface IPerformanceHeader
{
/// <summary>
/// Get the entry count offset in this structure.
/// </summary>
/// <returns>The entry count offset in this structure.</returns>
int GetEntryCountOffset();
/// <summary>
/// Set the DSP running behind flag.
/// </summary>
/// <param name="isRunningBehind">The flag.</param>
void SetDspRunningBehind(bool isRunningBehind);
/// <summary>
/// Set the count of voices that were dropped.
/// </summary>
/// <param name="voiceCount">The count of voices that were dropped.</param>
void SetVoiceDropCount(uint voiceCount);
/// <summary>
/// Set the start ticks of the <see cref="Dsp.AudioProcessor"/>. (before sending commands)
/// </summary>
/// <param name="startTicks">The start ticks of the <see cref="Dsp.AudioProcessor"/>. (before sending commands)</param>
void SetStartRenderingTicks(ulong startTicks);
/// <summary>
/// Set the header magic.
/// </summary>
/// <param name="magic">The header magic.</param>
void SetMagic(uint magic);
/// <summary>
/// Set the offset of the next performance header.
/// </summary>
/// <param name="nextOffset">The offset of the next performance header.</param>
void SetNextOffset(int nextOffset);
/// <summary>
/// Set the total time taken by all the commands profiled.
/// </summary>
/// <param name="totalProcessingTime">The total time taken by all the commands profiled.</param>
void SetTotalProcessingTime(int totalProcessingTime);
/// <summary>
/// Set the index of this performance frame.
/// </summary>
/// <param name="index">The index of this performance frame.</param>
void SetIndex(uint index);
/// <summary>
/// Get the total count of entries in this frame.
/// </summary>
/// <returns>The total count of entries in this frame.</returns>
int GetEntryCount();
/// <summary>
/// Get the total count of detailed entries in this frame.
/// </summary>
/// <returns>The total count of detailed entries in this frame.</returns>
int GetEntryDetailCount();
/// <summary>
/// Set the total count of entries in this frame.
/// </summary>
/// <param name="entryCount">The total count of entries in this frame.</param>
void SetEntryCount(int entryCount);
/// <summary>
/// Set the total count of detailed entries in this frame.
/// </summary>
/// <param name="entryDetailCount">The total count of detailed entries in this frame.</param>
void SetEntryDetailCount(int entryDetailCount);
}
}
|