Skip to content
Snippets Groups Projects
  1. Jan 08, 2019
  2. Jan 07, 2019
  3. Dec 20, 2018
  4. Dec 18, 2018
  5. Dec 13, 2018
  6. Dec 12, 2018
  7. Dec 11, 2018
  8. Dec 07, 2018
  9. Dec 06, 2018
    • Sean McBride's avatar
      Made some things really deprecated, instead of only commented · 176ff4bb
      Sean McBride authored
      - Added VTK_DEPRECATED macro, which can be used to deprecated a class. Used it to deprecate vtkExtractArraysOverTime and vtkPExtractArraysOverTime. Unwrapped their New method from VTK_LEGACY, since the vtkTypeMacro in the line after invokes New (causing a warning of the use of a deprecated method).
      - Deprecated vtkTimerLog::AllocateLog and replaced remaining uses of it
      - Wrap vtkContourGrid::ComputeGradients in VTK_LEGACY_REMOVE
      - Added a macro to decorate printf-style functions, like vtkTimerLog::FormatAndMarkEvent
      - Exclude FormatAndMarkEvent() from wrapping to avoid -Wformat-security warning, but also because the parameter is not guarded against uncontrolled format string attacks.
      176ff4bb
    • Allison Vacanti's avatar
      Optionally optimize new iterators in debugging builds. · ff6996f3
      Allison Vacanti authored
      In the past, folks have complained about poor performance
      in debugging builds. These new iterators are written such
      that their complexity optimizes out, but there is still a
      lot of complexity. On debugging builds without optimization,
      this can really get in the way and start slowing things down.
      
      In anticipation of this request, I'm adding a CMake option
      VTK_ALWAYS_OPTIMIZE_ARRAY_ITERATORS which, as you might guess,
      will always optimize array iterators on platforms that
      support selective optimization in debug builds.
      ff6996f3
  10. Dec 05, 2018
  11. Dec 04, 2018
  12. Dec 03, 2018
  13. Nov 30, 2018
  14. Nov 29, 2018
  15. Nov 28, 2018
  16. Nov 23, 2018
  17. Nov 19, 2018
  18. Nov 15, 2018
    • Bill Lorensen's avatar
      BUG: Dynamic zero divide errors · dcbf3fcf
      Bill Lorensen authored
      vtkChartBox: replaced a retained, returned pointer with a stored
      value.
      
      vtkChartXY: Added check for range[0] == range[1] and avoid division by zero.
      
      vtkFunctionParser: Added check for division of a vector by 0.0.
      
      vtkUnstructuredGridQuadricDecimation: first time through loop,
      lasterror is 0.0. Avoid division by zero by checking for 0.0.
      dcbf3fcf
  19. Nov 12, 2018
    • Bill Lorensen's avatar
      BUG: Dynamic zero divide errors · 2216de74
      Bill Lorensen authored
      vtkChartBox: replaced a retained, returned pointer with a stored
      value.
      
      vtkChartXY: Added check for range[0] == range[1] and avoid division by zero.
      
      vtkFunctionParser: Added check for division of a vector by 0.0.
      
      vtkUnstructuredGridQuadricDecimation: first time through loop,
      lasterror is 0.0. Avoid division by zero by checking for 0.0.
      2216de74
Loading