- Oct 27, 2017
-
-
David E. DeMarle authored
-
Carson Brownlee authored
-
Carson Brownlee authored
-
Carson Brownlee authored
-
f26d7f90 fix some memory leaks that were in the openvr classes Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3506
-
Ken Martin authored
results of a debug leaks build on some tests
-
026ed4f3 BUG: adding missing selection InvokeEvents for ClickAndDrag Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3476
-
04460f5b vtkModuleAPI: Update vtk_module_config to avoid overwriting _module Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Mathieu Westphal <mathieu.westphal@kitware.com> Merge-request: !3503
-
dc22295d fix minor warnings in motion blur header Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3504
-
Ken Martin authored
just some dashboard fixes
-
Jean-Christophe Fillion-Robin authored
This commit prevents the variable "_module" from being overwritten in vtk_module_config() after being set in "pv_process_modules()". In the particular project where the error was investigated, it fixes a failure to link the plugin against wslink and wslinkCS. The pseudo code reported below illustrates the scenario leading to the link error: //----------------------------- pv_process_modules() [/path/to/Plugins/<NameOfPlugin>/CMakeLists.txt] -> foreach(_module IN LISTS current_module_set_sorted) [ParaViewPlugins.cmake :pv_process_modules] ############################################################################################################ # NOTE: _module is set here ############################################################################################################ [...] -> vtk_add_cs_wrapping(${_module}) [ParaViewPlugins.cmake :pv_process_modules] -> vtk_add_cs_wrapping [vtkClientServerWrapping.cmake :vtk_add_cs_wrapping] [...] -> vtk_module_dep_includes(${module}) [vtkClientServerWrapping.cmake :vtk_add_cs_wrapping] -> vtk_module_config( ... ) [vtlModuleAPI.cmake :vtk_module_dep_includes] ##################################################################################################### # NOTE: This commit make sure _module is *NOT* overwritten ! ##################################################################################################### -> list(APPEND plugin_cs_modules ${_module}) [ParaViewPlugins.cmake :pv_process_modules] -> set (${pv-plugin}_CS_MODULES ${plugin_cs_modules}) [ParaViewPlugins.cmake :pv_process_modules] # This is the code path leading to the link error ADD_PARAVIEW_PLUGIN(...) [/path/to/Plugins/<NameOfPlugin>/ParaViewPlugin/CMakeLists.txt] -> if (pv-plugin AND ${pv-plugin}_CS_MODULES) [ParaViewPlugins.cmake :ADD_PARAVIEW_PLUGIN] -> foreach(module ${${pv-plugin}_CS_MODULES}) [ParaViewPlugins.cmake :ADD_PARAVIEW_PLUGIN] [...] -> list(APPEND extradependencies ${module} ${module}CS) [ParaViewPlugins.cmake :ADD_PARAVIEW_PLUGIN] [...] if (extradependencies) [ParaViewPlugins.cmake :ADD_PARAVIEW_PLUGIN] target_link_libraries(${NAME} LINK_PUBLIC ${extradependencies}) ################################################################################################################ # NOTE: Without this commit, the plugin was linked either against incorrect libraries or against nonexistent one ################################################################################################################ //-----------------------------
-
- Oct 26, 2017
-
-
86c8a394 Implement viewWillMoveToWindow: and viewDidChangeBackingProperties for Retina Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !3446
-
0c260848 add simple motion blur pass Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3378
-
18009b17 vtk_module_config: Check if VTK_MODULES_DIR is defined 66757c59 vtkExternalModuleMacros: Accept custom value for VTK_MODULES_DIR Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3493
-
Jean-Christophe Fillion-Robin authored
This helps diagnosing problems.
-
2645784e Remove error message in vtkPKdTree::VolumeBounds() 68921645 Ensure that all processes in subgroup invoke collectives Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !3492
-
0fbcb3d8 adapt to changes in ospray 1.4.0 materials 40c9dcbd add alternate images for ospray 1.4.0 bump Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3497
-
- Oct 25, 2017
-
-
David E. DeMarle authored
removes Matte material and adds the new spectral signature for metals. I'm still keeping support for the old signature as it is easier to use and should work for all osp != v1.4.0.
-
David E. DeMarle authored
running tests with -I shows that the results are still OK and hopefully more correct than before.
-
8553a49f use a better name for value indexed materials Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3496
-
c29fc28c add a test and constness per review 7982bc01 keep record of materials so we can color by them later Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Joachim Pouderoux <joachim.pouderoux@kitware.com> Merge-request: !3482
-
David E. DeMarle authored
"mastermaterial" doesn't bring to mind the array lookup that happens. It also has the potential to have meaning collision with materials that work together for things like layer effects, double sidedness, and surface vs volume behavior.
-
4f0fcd7d allow BMP writer to write to memory like JPG and PNG can Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3486
-
Cory Quammen authored
The code executes fine when this condition is encountered, so the error message has been converted to a code comment instead.
-
Jean-Christophe Fillion-Robin authored
This fixes build of Paraview plugins where module files are generated in a directory different from the VTK build tree.
-
Cory Quammen authored
In a distributed dataset where some processes have datasets with no points or cells, not all processes would invoke the same collective communication operations in vtkPKdTree::CreateGlobalDataArrayBounds(). This would lead to a deadlock in pvserver where processes waited for messages that never came. This is solved by distributing the maximum number of cell and point data arrays to all processes so that they all participate in the collective operations.
-
David E. DeMarle authored
also correct some copy paste doc and alphabetize problems in related files.
-
02049da0 Use even size windows for HiDPI/retina displays Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3489
-
David E. DeMarle authored
Note, approach for BMP is a little different in that I modified the parent class to allow ostringstream. As such I had to change more than just the one writer. On the up side, that should facilitate making the same change to a handful of other writers.
-
Sankhesh Jhaveri authored
-
361dee9e Fix python test failure because of MPI and vtkNrrdReader 175f8c58 Added python test as example for volume shader replacements 2cdbab17 Documentation for vtkShaderProgram::Substitute parameters 13d43249 Added documentation note for range type as applicable to 2D functions 04645f56 Remove export information from shader generated string 28e4ac01 Allow vtkEncodeString to create header without any export info d5729f86 Fix volume header test and unused variable warnings e7ce193e Baselines for new volume custom shader tests ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3406
-
add44d13 Bump VTK-m. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !3484
-
David E. DeMarle authored
-
92581891 DOC: Fix buildbot links in develop.md. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !3394
-
add7458b Fix #17156: ensure global ids are preserved by RemoveGhostCells. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3481
-
04fe9df5 Enable serialization of overlapping AMR. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Andrew Bauer <andy.bauer@kitware.com> Merge-request: !3477
-
99cc48df Allow use of utf8 for filenames in IO module Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Reviewed-by:
David Gobbi <david.gobbi@gmail.com> Merge-request: !3263
-
Sankhesh Jhaveri authored
The object factory overrides vtkNrrdReader to vtkPNrrdReader when an MPI build is enabled. Since, the test is not added as a parallel test, it is run with `vtkpython` instead of `pvtkpython` resulting in an error. This change disables the object factory override for vtkNrrdReader.
-
Sankhesh Jhaveri authored
-
Sankhesh Jhaveri authored
Documentation comments in the example test as well. Minor code cleanups.
-