| 74 | } |
| 75 | |
| 76 | XN_C_API XnStatus xnPixelFormatFromString(const XnChar* strType, XnPixelFormat* pFormat) |
| 77 | { |
| 78 | XN_VALIDATE_INPUT_PTR(strType); |
| 79 | XN_VALIDATE_OUTPUT_PTR(pFormat); |
| 80 | |
| 81 | XN_ENUM_VALIDATE_FROM_STRING(XnPixelFormat, strType, *pFormat); |
| 82 | |
| 83 | return (XN_STATUS_OK); |
| 84 | } |
| 85 | |
| 86 | XN_C_API XnUInt32 xnGetBytesPerPixelForPixelFormat(XnPixelFormat format) |
| 87 | { |
no outgoing calls
no test coverage detected