- Jul 13, 2016
-
-
Alexis Girault authored
-
Alexis Girault authored
TODO
-
Alexis Girault authored
There were confusions between having a texture and having texture coordinates. Those two utility functions regroup those information that was needed multiple times in vtkOpenGLPolyDataMapper.
-
Alexis Girault authored
Ignores the actor texture for now and process all the actor property textures (only way to get multiple of them). Adapt textures blending using blending modes defined in vtkTexture [1]. [1] https://github.com/Kitware/VTK/blob/master/Rendering/Core/vtkTexture.h#L162-L171
-
Alexis Girault authored
Update the parser to first instantiate the appropriate number of data arrays needed after figuring the number of different set of texture coordinates. Each of those set are associated to different materials (texture), defined in an .obj file by a line templated as follow: `usemtl material_name` In the second parsing of the file, update the current material name being processed when reaching a line that start by `usemtl`, then fill in the texture coordinates accordingly when reaching a line starting by `vt`: - add the coordinates read at that line to the current material - add (-1, -1) to the other materials
-
- Jul 07, 2016
-
-
Sankhesh Jhaveri authored
-
Chuck Atkins authored
The updated FindHDF5 module addresses various issues related to compiler wrappers (i.e. Cray).
-
David C. Lonie authored
vtkOpenFOAMReader would fail to read files if a list of the form: (scalar (scalar scalar) ) was found, as it only supported nested lists to appear before all 'loose' scalars. This patch allows such files to be read by discarding the nested list data and printing a warning, instead of failing to finish reading the file. This is to work around an issue reported on the mailing list where such a list was used in a field that was not needed for visualization.
-
David C. Lonie authored
The final blending pass had assumed that the target buffer was RGB, not RGBA. The new implementation correctly computes the final alpha values of the blended opaque and translucent layers.
-
David C. Lonie authored
Some drivers seem to have bugs that prevent the dual depth peeling from functioning properly. Add an environment variable that will force the renderer to use the old implementation.
-
Ken Martin authored
patch courtesy of Tim Rowley for adding width and height options to the TimingTest
-
- Jun 29, 2016
-
-
039f7961 Fix bugs&typo in VTK Example folder Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1576
-
44dafc3e Namespace VTK's GenerateExportHeader as it differs from CMake's 2b5d0da5 Prefer CXX_VISIBILITY_PRESET over add_compiler_export_flags. Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Brad King <brad.king@kitware.com> Merge-request: !1593
-
- Jun 28, 2016
-
-
Robert Maynard authored
The VTK version of GenerateExportHeader has been modified from the CMake official version to include support for adding arbitrary additional information through the EXPORT_CODE define. Because of this modification we need to namespace all the function calls to make sure that consumers properly call our version instead of the CMake official version.
-
Robert Maynard authored
When building with CMake 3.0+ the add_compiler_export_flags function has been marked as deprecated, so lets use target based properties instead.
-
- Jun 27, 2016
-
-
With VTK new version, find_package cannot find VTK_RENDERING_BACKEND properly. The solution is to call find_package(VTK REQUIRED) first, then use vtk_module_config to load the needed modules. Some typos are also fixed. For Statistics example, the SetInput function is replaced by SetInputDta function(See vtkTableAlgorithm class).
-
abfbe569 Bug #16737: Change BlockSize type to prevent overflow Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !1583
-
8154499e Merge branch 'upstream-xdmf3' into bump-xdmf3 08a05864 xdmf3 2016-06-16 (cdb48e8e) 3f4b6dad update update script for xdmf3 latest 70dcd4a2 make xdmf3 test respect lack of hdf5 files Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1571
-
0e24ede5 Copy field data in each block of a distributed data filter Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cory Quammen <cory.quammen@kitware.com> Merge-request: !1588
-
Mathieu Westphal (Kitware) authored
-
3d10b65f Improving Initial Value Problem Solver Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1581
-
- Jun 26, 2016
-
-
5e1292b0 Fix use of integral abs function with float types Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Andrew Bauer <andy.bauer@kitware.com> Merge-request: !1591
-
Cory Quammen authored
Use std:abs instead of abs when arguments are floats.
-
- Jun 24, 2016
-
-
19977d37 std::unique_ptr has a swap function. 831def7a std::auto_ptr is marked deprecated in C++11/14 and will be removed in C++17. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !1586
-
Haocheng LIU authored
Changing BlockSize type from unsigned int to int is acceptable since the value computed for this->BlockSize in the class is known to never be anything but an int(see vtkwindBladeReader::FindVariableOffsets)
-
- Jun 23, 2016
-
-
Andrew Maclean authored
-
49284637 from 'char ** argv' to 'char *argv[]' to prevent link error on Windows cc9ec248 Minor changes to get rid of -Wunused and -Wformat compiler warnings f47a0534 added a second test (TestPolyhedron3) 1b113aec added correct parentheses to value tolerance calculation e45d98a7 added test for improved polyhedral contouring d90a9cf8 improved the polyhedron contour using tolerances dependent on the data range Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Utkarsh Ayachit <utkarsh.ayachit@kitware.com> Merge-request: !1563
-
- Jun 22, 2016
-
-
Andrew Maclean authored
This fix selects std::unique_ptr when the compiler is identified as being C++11 compliant. To ensure the compiler is C++11 compliant or better, __cplusplus, _MSC_VER and _CPPLIB_VER are tested. _MSC_VER is used since Microsoft compilers still use 19711L as the __cplusplus value. _CPPLIB_VER is used to test for better Dinkumware support. The variable VTK_HAS_STD_UNIQUE_PTR is defined if std::unique_ptr is available.
-
- Jun 21, 2016
-
-
373258ed Support wheel events in vtkInteractorStyleUser Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1577
-
d560ec83 BUG #16744: Resources are not removed for a renderer removed from the window. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1574
-
1cdf99cd Proposed fix for handling Exodus files that lack time 62bf4066 Fixes bug introduced in 235bd27a. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1534
-
7b08d2d8 vtkPeriodicDataArray: fix vector range computation. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1570
-
Mathieu Westphal (Kitware) authored
This commit improve different features in initial value problem solver * vtkRungeKutta4 now set xnext, even when going out of domain, the same way RK2 and RK45 do. * vtkInitialValueProblemSolvers now supports mulitple initialization, allowing to change the function set of a solver after initializing it.
-
- Jun 20, 2016
-
-
a0eb686b Add #include for offsetof() macro in generated Python wrappers Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1582
-
1fcd8339 Rename LabeledContourMapper::BuildTime to avoid shadowing superclass. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1580
-
22ab8299 Purged dead branch Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Berk Geveci <berk.geveci@kitware.com> Merge-request: !1578
-
Dan Lipsa authored
A loop where the render window is kept around and everything in the pipeline is removed and added at the next iteration leaks memory, in OpenGL, linux. For the OpenGL2 backend same loop does not leak. Two problems were fixed. First ReleaseGraphicsResources was not called when a renderer was removed from a render window. Second, for a offscreen render window Mapped was set to 0, which meant that no resources were released.
-
Max Smolens authored
The generated Python wrappers use the C offsetof() macro, but don't #include the header that defines the macro (<cstddef>). For example, see https://gitlab.kitware.com/vtk/vtk/blob/636aa17/Wrapping/Tools/vtkWrapPythonClass.c#L553. This commit adds the proper header to the generated Python wrappers. Without this, wrapping could fail unless <cstddef> is indirectly included through the header of the class being wrapped. An example error message is: Libs/MRML/Core/vtkMRMLSubjectHierarchyConstantsPython.cxx:853:40: error: ‘offsetof’ was not declared in this scope offsetof(PyVTKObject, vtk_weakreflist), // tp_weaklistoffset
-
David C. Lonie authored
vtkMapper also has a BuildTime ivar that is still needed for the OpenGL backend.
-
- Jun 18, 2016
-
-
3d6a42c2 Add annotations to lookup table, needed for display, and update test 3bbfea3f Add code to read images with index data & color palette fc28e36e Add test for vtkGDALRasterReader with image using color palette Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1575
-