- 03 Oct, 2018 1 commit
-
-
luz.paz authored
Found via `codespell`
-
- 29 Aug, 2018 1 commit
-
-
luz.paz authored
Found via `codespell`
-
- 01 Aug, 2018 1 commit
-
-
luz.paz authored
Found via `codespell -q 3 -I ../vtk-whitelist-words.txt --skip="./ThirdParty,./Utilities"`
-
- 18 Jun, 2018 2 commits
-
-
Brad King authored
The tests vtkGeovisCoreCxx-TestCoincidentGeoGraphRepresentation2D vtkGeovisCoreCxx-TestLabeledGeoView2D fail with PROJ 4.9.3 and above due to a change in the projection used. This PROJ version is now what we bundle with VTK. Since these tests cover deprecated code anyway, simply remove them.
-
Brad King authored
Although hosted at `proj4.org`, the library is called `PROJ` and has now released version 5. Drop the version number from our module name.
-
- 17 Jun, 2018 1 commit
-
-
luz.paz authored
Found via `codespell`
-
- 12 Jun, 2018 2 commits
- 18 May, 2018 1 commit
-
-
Kitware Robot authored
Populate a script with `map_<md5>=<sha512>` variable settings and then run the following to convert the content link files: git ls-files -- '*.md5' | while read f; do md5="$(cat "$f")" sha512="$(eval echo \${map_$md5})" rm "$f" echo $sha512 > ${f%.md5}.sha512 done
-
- 03 May, 2018 1 commit
-
-
Sankhesh Jhaveri authored
-
- 01 May, 2018 2 commits
-
-
Sankhesh Jhaveri authored
-
Sankhesh Jhaveri authored
-
- 27 Apr, 2018 1 commit
-
-
Sankhesh Jhaveri authored
-
- 25 Apr, 2018 1 commit
-
-
Sankhesh Jhaveri authored
-
- 24 Apr, 2018 1 commit
-
-
Sankhesh Jhaveri authored
The GDAL raster reader creates cell data instead of point data.
-
- 16 Apr, 2018 2 commits
-
-
Sankhesh Jhaveri authored
warn_unused_result and not all enumeration cases handled for switch
-
Sankhesh Jhaveri authored
A special place for GDAL based image projection filters
-
- 14 Apr, 2018 1 commit
-
-
John Tourtellott authored
-
- 20 Mar, 2018 1 commit
-
-
Sean McBride authored
This required some clean up, because the automatic changes borked a couple of files, but mostly resulted in stupid whitespacing. A few find/replace fixed things up. There are now some duplicate semis because it did changes like: ~AMRIndexIterator() override{}; to ~AMRIndexIterator() override= default;; Note there was a pointless semi before, which clang-tidy didn’t expect / account for. My next commit will remove them.
-
- 16 Feb, 2018 1 commit
-
-
Ken Martin authored
The old MapDataArrayTGoMultiTexture relied on being able to lock dowwn a specific texture unit which cannot be guaranteed as external code or render passes may bne uising that texture unit. Instead we support the method having the name of a texture along with the matching ethod in vtkProperty to name a texture. Between these two users can assign texture coordinate arrays to specific textures. Deprecated the old index and unit based methods. Removed a no longer needed vtkTexture.h include which may bite some folks who are using vtkTexture but not including the header (which they shoudl do)
-
- 04 Jan, 2018 1 commit
-
-
luz.paz authored
Found via `codespell`
-
- 20 Dec, 2017 1 commit
-
-
Ben Boeckel authored
-
- 19 Dec, 2017 1 commit
-
-
Sean McBride authored
Found with regexes: vtkBooleanMacro.*int\) vtkBooleanMacro.*int \)
-
- 15 Dec, 2017 1 commit
-
-
luz.paz authored
Mostly removing superflous double whitespace on both user-facing and non-user-facing strings. Some misc. typo fixes sprinkled in as well.
-
- 06 Dec, 2017 1 commit
-
-
Ken Martin authored
This topic changes the shadow map passes in VTK to use an exponential function which behaves a bit better and is faster. also fix a bug where for directional lights the parallel scale was double what it should be. Also add in the capability to support subsurface scattering by compouting a thickness value in the lighting calc.
-
- 05 Dec, 2017 1 commit
-
-
Ben Boeckel authored
-
- 15 Nov, 2017 1 commit
-
-
Ben Boeckel authored
Now that instantiators are gone, nothing cares about the ABSTRACT property.
-
- 06 Nov, 2017 1 commit
-
-
luz.paz authored
Typos fixes for documentation and source code comments. This commit is a follow up to: vtk/vtk!3424
-
- 04 Oct, 2017 1 commit
-
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs to wrap =delete;
-
- 02 Oct, 2017 1 commit
-
-
Kitware Robot authored
Now that VTK requires a C++11 compiler we can ditch using custom typedefs
-
- 29 Sep, 2017 1 commit
-
-
Andrew Bauer authored
Adding in functionality to allow inserting vtkNew objects into stl containers of vtkSmartPointer objects as well as comparisons between vtkNew objects and raw pointers. Also removing Get() and GetPointer() calls from vtkNew objects since in most instances we can just pass in the vtkNew<> object instead of having to use the Get() or GetPointer() methods to get the raw pointer.
-
- 25 Aug, 2017 1 commit
-
-
Ken Martin authored
examination indicates it should be rmeoved
-
- 26 Jul, 2017 1 commit
-
-
Kitware Robot authored
This topic is the result of running clang-tidy to modernize our usage of NULL and 0 to nullptr. It also includes some manual and semi manual changes where clang-tidy would not be expected to work (such as in comments, or classes not compiled on this build) There are definitely many comments and occurances that this topic misses that we will need to fix over time.
-
- 30 May, 2017 1 commit
-
-
Sean McBride authored
Found & auto-fixed by clang-tidy’s readability-container-size-empty check. empty() is guaranteed O(1) while size() is not, thus could be faster in some cases.
-
- 08 Apr, 2017 1 commit
-
-
Sean McBride authored
snprintf is now part of C++11 and is already simulated for old versions of VS.
-
- 14 Mar, 2017 1 commit
-
-
Kunda authored
doxy and misc. typos pt2
-
- 22 Jan, 2017 1 commit
-
-
Sean McBride authored
- Made a few APIs' params const - Changed many usages of the evil GetBounds() to expect a const return value, even though it does not (yet?) return const - Slightly changed return values of vtkTextActor3D::GetBounds() to return its own ivar instead of its ImageActor's
-
- 16 Jan, 2017 1 commit
-
-
Robert Maynard authored
-
- 05 Jan, 2017 1 commit
-
-
David Gobbi authored
This fixes performance warnings for cppcheck.
-
- 05 Dec, 2016 1 commit
-
-
Dan Lipsa authored
These are small differences in label size and location.
-