| 1489 | } |
| 1490 | |
| 1491 | void PMTraceConsumer::HandleWin7DxgkVSyncDPC(EVENT_RECORD* pEventRecord) |
| 1492 | { |
| 1493 | using namespace Microsoft_Windows_DxgKrnl::Win7; |
| 1494 | |
| 1495 | auto pVSyncDPCEvent = reinterpret_cast<DXGKETW_SCHEDULER_VSYNC_DPC*>(pEventRecord->UserData); |
| 1496 | |
| 1497 | // Windows 7 does not support MultiPlaneOverlay. |
| 1498 | HandleDxgkSyncDPC(pEventRecord->EventHeader.TimeStamp.QuadPart, (uint32_t)(pVSyncDPCEvent->FlipFenceId.QuadPart >> 32u)); |
| 1499 | } |
| 1500 | |
| 1501 | void PMTraceConsumer::HandleWin7DxgkMMIOFlip(EVENT_RECORD* pEventRecord) |
| 1502 | { |
no outgoing calls
no test coverage detected