| 159 | const short* DumpDepthPacketProcessor::getLookupTable() { return lut_; } |
| 160 | |
| 161 | void DumpDepthPacketProcessor::loadP0TablesFromCommandResponse(unsigned char* buffer, size_t buffer_length) { |
| 162 | delete[] p0table_; |
| 163 | p0table_ = new unsigned char[buffer_length]; |
| 164 | std::memcpy(p0table_, buffer, buffer_length); |
| 165 | } |
| 166 | |
| 167 | void DumpDepthPacketProcessor::loadXZTables(const float *xtable, const float *ztable) { |
| 168 | delete[] xtable_; |
no outgoing calls
no test coverage detected