MCPcopy Create free account
hub / github.com/Kitware/VTK / SwitchDoubleBuffer

Method SwitchDoubleBuffer

Filters/Parallel/vtkPKdTree.cxx:2296–2302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2294 return (this->PtArray2 == nullptr);
2295}
2296void vtkPKdTree::SwitchDoubleBuffer()
2297{
2298 float* temp = this->CurrentPtArray;
2299
2300 this->CurrentPtArray = this->NextPtArray;
2301 this->NextPtArray = temp;
2302}
2303void vtkPKdTree::FreeDoubleBuffer()
2304{
2305 FreeList(this->PtArray2);

Callers 1

PartitionSubArrayMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected