// d3d12umddi.h
PFND3D12DDI_QUERY_CLOCK_CALIBRATION_0054 Pfnd3d12ddiQueryClockCalibration0054;
void Pfnd3d12ddiQueryClockCalibration0054(
D3D12DDI_HDEVICE unnamedParam1,
D3D12DDI_HCOMMANDQUEUE unnamedParam2,
D3D12DDI_GPUCLOCKDATA_0054 *pClockData
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Queries for clock calibration information.
unnamedParam1The device to query clock information for.
unnamedParam2A handle to the command queue.
pClockDataPointer to a D3D12DDI_GPUCLOCKDATA_0054 structure that contains the output frequency, GPU clock, and CPU clock on the specified engine.
//Declaration
PFND3D12DDI_QUERY_CLOCK_CALIBRATION_0054 Pfnd3d12ddiQueryClockCalibration0054;
// Definition
void Pfnd3d12ddiQueryClockCalibration0054
(
D3D12DDI_HDEVICE Arg1
D3D12DDI_HCOMMANDQUEUE Arg2
D3D12DDI_GPUCLOCKDATA_0054 *pClockData
)
{...}