| 179 | #endif // LIBFREENECT2_WITH_CUDA_SUPPORT |
| 180 | |
| 181 | DumpPacketPipeline::DumpPacketPipeline() |
| 182 | { |
| 183 | RgbPacketProcessor *rgb = new DumpRgbPacketProcessor(); |
| 184 | DepthPacketProcessor *depth = new DumpDepthPacketProcessor(); |
| 185 | comp_->initialize(rgb, depth); |
| 186 | } |
| 187 | |
| 188 | DumpPacketPipeline::~DumpPacketPipeline() {} |
| 189 |
nothing calls this directly
no test coverage detected