[Feature] Allow translucent rendering of volumes behind meshes
Opened this issue · 4 comments
Motivation
When rendering a mesh, it blocks any volume images behind it. It would be great if meshes could be made transparent so that image data "shows" through them. In the first screenshot you can see some cylinder sources I've added to the scene, which block the volume data behind them. Even when the opacity is turned right down (second image), the volume data is blocked.
Detailed Description
@sankhesh do you know why translucent polydata write into depth buffer ?
vtk-js/Sources/Rendering/OpenGL/ForwardPass/index.js
Lines 48 to 79 in c962c49
@sankhesh do you know why translucent polydata write into depth buffer ?
vtk-js/Sources/Rendering/OpenGL/ForwardPass/index.js
Lines 48 to 79 in c962c49
To sort order with multiple translucent actors only when picking. It shouldn't be written when the current frame is not a pick frame. See
vtk-js/Sources/Rendering/OpenGL/Actor/index.js
Lines 155 to 158 in c962c49
From what I remember, the zbuffer is needed when rendering both volumes and polydatas:
If a polydata is in front of a volume, we need the zbuffer to know when to stop the volume raycasting
You can test if it is really needed by removing this zbuffer pass and rendering this example (a polydata in front of a volume)
A solution is to discard fragments that are completely transparent in the polydata mapper fragment shader during the zbuffer pass