------------------------------------------------------------------------------
| 191 | |
| 192 | //------------------------------------------------------------------------------ |
| 193 | void vtkCompositePolyDataMapper::SetVBOShiftScaleMethod(int method) |
| 194 | { |
| 195 | if (this->ShiftScaleMethod == method) |
| 196 | { |
| 197 | return; |
| 198 | } |
| 199 | this->ShiftScaleMethod = method; |
| 200 | |
| 201 | this->Superclass::SetVBOShiftScaleMethod(method); |
| 202 | |
| 203 | auto& internals = (*this->Internals); |
| 204 | for (auto& iter : internals.BatchedDelegators) |
| 205 | { |
| 206 | auto& delegator = iter.second; |
| 207 | delegator->GetDelegate()->SetVBOShiftScaleMethod(method); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | //------------------------------------------------------------------------------ |
| 212 | void vtkCompositePolyDataMapper::SetPauseShiftScale(bool pauseShiftScale) |
no outgoing calls