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

Method SetRequestedRenderMode

Rendering/VolumeOpenGL2/vtkMultiBlockVolumeMapper.cxx:530–541  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

528
529//------------------------------------------------------------------------------
530void vtkMultiBlockVolumeMapper::SetRequestedRenderMode(int mode)
531{
532 if (this->RequestedRenderMode != mode)
533 {
534 for (auto& mapper : this->Mappers)
535 {
536 mapper->SetRequestedRenderMode(mode);
537 }
538 this->RequestedRenderMode = mode;
539 this->Modified();
540 }
541}
542
543//------------------------------------------------------------------------------
544void vtkMultiBlockVolumeMapper::SetComputeNormalFromOpacity(bool val)

Callers 1

CreateMapperMethod · 0.45

Calls 1

ModifiedMethod · 0.45

Tested by

no test coverage detected