mirror of
https://github.com/XWine1/VdCallDump.git
synced 2026-07-24 12:32:35 -07:00
50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
namespace VdCallDump;
|
|
|
|
// This enum MUST be sorted case-sensitive
|
|
|
|
internal enum EraVdSystemCall
|
|
{
|
|
CanCreateContext,
|
|
ConfigureVirtualMemory,
|
|
Create32BitMapping,
|
|
FlushEntireCpuCache,
|
|
GetFrameEventScheduleStatistics,
|
|
GetFrameEventSignalStatistics,
|
|
GetFrameStatistics,
|
|
GetGpuPageTable,
|
|
GetLastKmdError,
|
|
GetSEQCounters,
|
|
GetTimestamps,
|
|
GetVmid,
|
|
InitializeDevice,
|
|
KPixNotifyShaderCreation,
|
|
KickoffCompute,
|
|
KickoffGraphics,
|
|
KickoffGraphicsSegmentQueue,
|
|
KickoffSdma,
|
|
KickoffTileMappingCopies,
|
|
KickoffTileMappings,
|
|
MapPhysicalToVirtual,
|
|
MapToEsram,
|
|
MarkSwapChainMemory,
|
|
PixQueryModifiedAddressRanges,
|
|
PixReplaceEsram,
|
|
ProtectReservedRegion,
|
|
QueryTilePool,
|
|
QueueBatchMappings,
|
|
QueueTileMappingCopies,
|
|
QueueTileMappings,
|
|
RegisterTilePool,
|
|
RequestComputeQueue,
|
|
ScheduleFrameEvents,
|
|
SetFrameInterval,
|
|
SetFrameNotification,
|
|
SetHaltOnAccess,
|
|
SetVLineNotification,
|
|
StreamingCountersControl,
|
|
Swap,
|
|
Swap2,
|
|
TerminateDevice,
|
|
UploadCustomMicrocode,
|
|
}
|