----------------------------------------------------------------------------
| 586 | |
| 587 | //---------------------------------------------------------------------------- |
| 588 | vtkTextProperty* vtkFastLabeledDataMapper::GetLabelTextProperty(int type) |
| 589 | { |
| 590 | if (type >= MAXPROPS) |
| 591 | { |
| 592 | vtkErrorMacro( |
| 593 | "Maximum number of text properties exceeded (" << type << " >= " << MAXPROPS << ")."); |
| 594 | return nullptr; |
| 595 | } |
| 596 | |
| 597 | return this->Implementation->TextProperties[type]; |
| 598 | } |
| 599 | |
| 600 | //---------------------------------------------------------------------------- |
| 601 | void vtkFastLabeledDataMapper::MakeupShaders(vtkOpenGLShaderProperty* sp) |
no outgoing calls