| 1423 | } |
| 1424 | |
| 1425 | void PMTraceConsumer::HandleWin7DxgkBlt(EVENT_RECORD* pEventRecord) |
| 1426 | { |
| 1427 | using namespace Microsoft_Windows_DxgKrnl::Win7; |
| 1428 | |
| 1429 | auto pBltEvent = reinterpret_cast<DXGKETW_BLTEVENT*>(pEventRecord->UserData); |
| 1430 | HandleDxgkBlt( |
| 1431 | pEventRecord->EventHeader, |
| 1432 | pBltEvent->hwnd, |
| 1433 | pBltEvent->bRedirectedPresent != 0); |
| 1434 | } |
| 1435 | |
| 1436 | void PMTraceConsumer::HandleWin7DxgkFlip(EVENT_RECORD* pEventRecord) |
| 1437 | { |
no outgoing calls
no test coverage detected