----------------------------------------------------------------------------
| 799 | |
| 800 | //---------------------------------------------------------------------------- |
| 801 | void vtkHyperTreeGridRepresentation::SetUseMipmapTextures(bool rep) |
| 802 | { |
| 803 | if (this->Actor->GetTexture()) |
| 804 | { |
| 805 | this->Actor->GetTexture()->SetMipmap(rep); |
| 806 | } |
| 807 | std::map<std::string, vtkTexture*>& tex = this->Actor->GetProperty()->GetAllTextures(); |
| 808 | for (auto t : tex) |
| 809 | { |
| 810 | t.second->SetMipmap(rep); |
| 811 | } |
| 812 | this->UseMipmapTextures = rep; |
| 813 | } |
| 814 | |
| 815 | //---------------------------------------------------------------------------- |
| 816 | // Mapper and LODMapper |
nothing calls this directly
no test coverage detected