| 201 | } |
| 202 | |
| 203 | void PrintInputType(Intel_PresentMon::InputType type) |
| 204 | { |
| 205 | using namespace Intel_PresentMon; |
| 206 | switch (type) { |
| 207 | case InputType::Unspecified: wprintf(L"Unspecified"); break; |
| 208 | case InputType::MouseClick: wprintf(L"MouseClick"); break; |
| 209 | case InputType::KeyboardClick: wprintf(L"KeyboardClick"); break; |
| 210 | default: wprintf(L"Unknown (%u)", type); assert(false); break; |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | void PrintEventHeader(EVENT_HEADER const& hdr) |
| 215 | { |
no outgoing calls
no test coverage detected