Inviwo 0.9.12-pre
Inviwo documentation
|
#include <raycastingcomponent.h>
Public Member Functions | |
MultiRaycastingComponent (std::string_view volume, std::array< std::reference_wrapper< IsoTFProperty >, 4 > isotfs) | |
virtual std::string_view | getName () const override |
The name of the ShaderComponent. Will show up as the source of the line in the shaderwidget when the file is preprocessed and in error messages. | |
virtual void | process (Shader &shader, TextureUnitContainer &) override |
Called from Processor::process Override to set uniforms, bind textures etc. | |
virtual void | initializeResources (Shader &shader) override |
Called from Processor::initializeResources Override to set defines in the shader . This function will be called before the shader is compiled. | |
virtual std::vector< Property * > | getProperties () override |
Return all Properties This gets called in Processor::registerComponents which will add them to the processor. | |
virtual std::vector< Segment > | getSegments () override |
Return all Segments to be injected into the shader. This gets called in VolumeRaycasterBase::initializeResources after the call to RaycasterComponent::initializeResources. | |
bool | setUsedChannels (size_t channels) |
Public Member Functions inherited from inviwo::ShaderComponent | |
virtual std::vector< std::tuple< Inport *, std::string > > | getInports () |
Return all Inports and their port groups This gets called in Processor::registerComponents which will add them to the processor. | |
The voxel data from each channel in <volume>Voxel
will be classified using the transferfunction and isovalues from the corresponding IsoTFProperty, and composited into result
.
|
overridevirtual |
The name of the ShaderComponent. Will show up as the source of the line in the shaderwidget when the file is preprocessed and in error messages.
Implements inviwo::ShaderComponent.
|
overridevirtual |
Return all Properties This gets called in Processor::registerComponents which will add them to the processor.
Reimplemented from inviwo::ShaderComponent.
|
overridevirtual |
Return all Segments to be injected into the shader. This gets called in VolumeRaycasterBase::initializeResources after the call to RaycasterComponent::initializeResources.
Reimplemented from inviwo::ShaderComponent.
|
overridevirtual |
Called from Processor::initializeResources Override to set defines in the shader
. This function will be called before the shader
is compiled.
shader | in current use |
Reimplemented from inviwo::ShaderComponent.
|
overridevirtual |
Called from Processor::process Override to set uniforms, bind textures etc.
shader | in current use |
container | add any used TextureUnits here |
Reimplemented from inviwo::ShaderComponent.