| 196 | } |
| 197 | |
| 198 | XnStatus xnConfigurePixelFormat(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 199 | { |
| 200 | XnStatus nRetVal = XN_STATUS_OK; |
| 201 | |
| 202 | XnPixelFormat format; |
| 203 | nRetVal = xnPixelFormatFromString(pOpcode->GetText(), &format); |
| 204 | XN_IS_STATUS_OK(nRetVal); |
| 205 | |
| 206 | nRetVal = xnSetPixelFormat(hNode, format); |
| 207 | XN_IS_STATUS_OK(nRetVal); |
| 208 | |
| 209 | return (XN_STATUS_OK); |
| 210 | } |
| 211 | |
| 212 | XnStatus xnConfigureUserPosition(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 213 | { |
no test coverage detected