| 642 | } |
| 643 | |
| 644 | void XN_CALLBACK_TYPE ImageWatcher::HandlePixelFormatChange(ProductionNode& /*node*/, void* pCookie) |
| 645 | { |
| 646 | ImageWatcher *pThis = (ImageWatcher*)pCookie; |
| 647 | if (pThis == NULL) |
| 648 | { |
| 649 | XN_ASSERT(FALSE); |
| 650 | return; |
| 651 | } |
| 652 | pThis->NotifyIntPropChanged(XN_PROP_PIXEL_FORMAT, pThis->m_imageGenerator.GetPixelFormat()); |
| 653 | } |
| 654 | |
| 655 | /*************/ |
| 656 | /* IRWatcher */ |
nothing calls this directly
no test coverage detected