| 897 | |
| 898 | |
| 899 | void OpenGLDepthPacketProcessor::setConfiguration(const libfreenect2::DepthPacketProcessor::Config &config) |
| 900 | { |
| 901 | DepthPacketProcessor::setConfiguration(config); |
| 902 | impl_->config = config; |
| 903 | |
| 904 | impl_->params.min_depth = impl_->config.MinDepth * 1000.0f; |
| 905 | impl_->params.max_depth = impl_->config.MaxDepth * 1000.0f; |
| 906 | |
| 907 | impl_->params_need_update = true; |
| 908 | } |
| 909 | |
| 910 | void OpenGLDepthPacketProcessor::loadP0TablesFromCommandResponse(unsigned char* buffer, size_t buffer_length) |
| 911 | { |
nothing calls this directly
no outgoing calls
no test coverage detected