// d3dumddi.h
PFND3DDDI_LOGSTRINGTABLE Pfnd3dddiLogstringtable;
HRESULT Pfnd3dddiLogstringtable(
HANDLE hLog,
PFND3DDDICB_LOGSTRINGTABLEENTRY pfnLogStringTableEntryCb
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Called by the Microsoft Direct3D runtime to request that the user-mode display driver log a custom Event Tracing for Windows (ETW) marker event. Optionally implemented by Windows Display Driver Model (WDDM) 1.3 and later drivers.
hLogA handle to the Event Tracing for Windows (ETW) log that is to be written to.
pfnLogStringTableEntryCbA function pointer to the LogMarkerStringTableEntry function that locates a string table entry.
Returns S_OK or an appropriate error result if the function does not complete successfully.
This function is free-threaded.