| 140 | } |
| 141 | |
| 142 | XnStatus xnConfigureMirror(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 143 | { |
| 144 | XnStatus nRetVal = XN_STATUS_OK; |
| 145 | |
| 146 | XnBool bOn; |
| 147 | nRetVal = xnXmlReadBoolAttribute(pOpcode, "on", &bOn); |
| 148 | XN_IS_STATUS_OK(nRetVal); |
| 149 | |
| 150 | nRetVal = xnSetMirror(hNode, bOn); |
| 151 | XN_IS_STATUS_OK(nRetVal); |
| 152 | |
| 153 | return (XN_STATUS_OK); |
| 154 | } |
| 155 | |
| 156 | XnStatus xnConfigureMapOutputMode(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 157 | { |
no test coverage detected