| 188 | DumpPacketPipeline::~DumpPacketPipeline() {} |
| 189 | |
| 190 | const unsigned char* DumpPacketPipeline::getDepthP0Tables(size_t* length) { |
| 191 | *length = sizeof(libfreenect2::protocol::P0TablesResponse); |
| 192 | return static_cast<DumpDepthPacketProcessor*>(getDepthPacketProcessor())->getP0Tables(); |
| 193 | } |
| 194 | |
| 195 | const float* DumpPacketPipeline::getDepthXTable(size_t* length) { |
| 196 | *length = DepthPacketProcessor::TABLE_SIZE; |
nothing calls this directly
no test coverage detected