| 370 | } |
| 371 | |
| 372 | void XN_CALLBACK_TYPE GeneratorWatcher::HandleFrameSyncChange(ProductionNode& /*node*/, void* pCookie) |
| 373 | { |
| 374 | GeneratorWatcher *pThis = (GeneratorWatcher*)pCookie; |
| 375 | if ((pThis == NULL) || !pThis->m_generator.IsCapabilitySupported(XN_CAPABILITY_FRAME_SYNC)) |
| 376 | { |
| 377 | XN_ASSERT(FALSE); |
| 378 | return; |
| 379 | } |
| 380 | |
| 381 | pThis->UpdateFrameSync(); |
| 382 | } |
| 383 | |
| 384 | XnStatus GeneratorWatcher::UpdateFrameSync() |
| 385 | { |
nothing calls this directly
no test coverage detected