| 275 | } |
| 276 | |
| 277 | ULONG PresentMonProvider_FlipFrameType( |
| 278 | PresentMonProvider* ctxt, |
| 279 | uint32_t vidPnSourceId, |
| 280 | uint32_t layerIndex, |
| 281 | uint64_t presentId, |
| 282 | PresentMonProvider_FrameType frameType) |
| 283 | { |
| 284 | PRESENTMONPROVIDER_ASSERT(ctxt != nullptr); |
| 285 | PRESENTMONPROVIDER_ASSERT(IsValid(frameType)); |
| 286 | |
| 287 | return WriteEvent(ctxt, Event_FlipFrameType, vidPnSourceId, |
| 288 | layerIndex, |
| 289 | presentId, |
| 290 | (uint8_t) frameType); |
| 291 | } |
| 292 | |
| 293 | ULONG PresentMonProvider_MeasuredInput( |
| 294 | PresentMonProvider* ctxt, |
nothing calls this directly
no test coverage detected