| 825 | } |
| 826 | |
| 827 | XN_C_API const XnChar* xnResolutionGetName(XnResolution resolution) |
| 828 | { |
| 829 | for (XnUInt i = 0; i < sizeof(g_resInfo)/sizeof(XnResolutionInfo); ++i) |
| 830 | { |
| 831 | if (g_resInfo[i].Res == resolution) |
| 832 | { |
| 833 | return g_resInfo[i].strName; |
| 834 | } |
| 835 | } |
| 836 | |
| 837 | return "Unknown"; |
| 838 | } |
| 839 | |
| 840 | void xnMarkFPSFrame(XnContext* pContext, XnFPSData* pFPS) |
| 841 | { |
no outgoing calls
no test coverage detected