Releases: InteractiveComputerGraphics/splashsurf
Releases · InteractiveComputerGraphics/splashsurf
v0.4.0
v0.3.0
- Move
vtkio
convenience trait implementations insplashsurf_lib
behind a non-default feature flag (flagvtk-extras
). Flag is enabled in the CLI crate. - Re-export
vtkio
from lib if feature is enabled and use this from CLI - Move
coarse_prof
usage insplashsurf_lib
behind a non-default feature flag (flagprofiling
). Flag is enabled in the CLI crate. - Re-export
coarse_prof
from lib if feature is enabled and use this from CLI - Instead of directly writing into a global density map (
dashmap
) in parallel, use thread local density maps (HashMap
s) which are then merged in a second step (in parallel, into adashmap
). Improves performance of the test scene in the readme from 20 seconds to 12 seconds. - Fix bug which forced some parts in the library to divide work into 8 chunks, preventing use of more threads