The 'blurRed' targets are a one-component target (only red component) that are used to process and render the highlighting. Two targets are used in order to perform back-and-forth blurring. They are reduced in size (see CatanaRendering.getReducedWidth/Height) to make blurring faster (and not that much worse visually)
The 'fullscreen' target is used to render into a quad that occupies the whole screen
The 'selection' target is a one-component target (only red component) used to process the pickingTarget and decide which fragments will be highlighted. The result is rendered into the selectionTarget
Render highlights if there are any
Renders all Renderables added with CatanaRendering.addRenderable
Sets up CatanaRendering so that it will render highlights based on the selection managed by CatanaSelection
CatanaSelection object describing what to highlight
Color of the highlights
Sets up CatanaRendering so that it will render the highlights of a Representation or all representations of a Component
Representation or component to be highlighted
Color of the highlights
WARNING: This has not been tested thoroughly enough. It may not work as intended Sets up CatanaRendering so that it will render the highlights based on filters
Filtered selection to be highlighted
Color of the highlights
Sets up CatanaRendering so that it will render the highlights from a pickingTarget
Holds the IDs (pickingIds and objectIds) to be highlighted
Color of the highlight
If true, CONTOURS will be rendered (the initial highlighted fragments will be thrown away and only the outside blur will be kept). If false, nothing will be thrown away
Sets up CatanaRendering so that it will render the highlights of a Three.js Group
Group to be highlighted
Color of the highlight
Creates a selection texture/buffer and fills it with the IDs that we want selected
How many IDs we want selected
An array holding the IDs to be selected (needs to be a multiple of 4 because the data will be encoded as vec4s)
The mode for selection (see CatanaShader.SelectionShaderMode)
The color of the highlights
True if the selecting state changed (false -> true || true -> false) False otherwise
True to stop further mouse events. False, events propagate
Sets up CatanaRendering so that it will NOT render any highlights
Generated using TypeDoc
Responsible for the rendering of hightlights of 3D structures Initially planned to perform general rendering, or other rendering operations, but there was no need for anything other than highlights TODO complete... there is the Renderable class that is managed by CatanaRendering :)