- 06 Aug, 2012 3 commits
-
-
Brad King authored
All classes in these modules are excluded from wrapping, so do not wrap the modules at all. Change-Id: Ia3eae557c706a433760b46420969981ed4ef9705
-
Dave DeMarle authored
90324339 modules that don't make hierarchy should not depend on it 6d30d23b resolve merge conflicts 5f515f7f Allow modules to not participate in hierarchy wrapping.
-
Dave DeMarle authored
ac563be5 remove executable mode on file per gerrit review 21ae900b Add readmes to describe how to update vtk's xdmf from upstream. 167587fa Merge branch 'xdmf2vtk-upstream' into import-xdmf2-library f40916ae xdmf2/vtk 2012-08-01 (reduced) 8b23bc3e Enable vtkxdmf2 as a module 9a5a8e17 Merge branch 'xdmf2-upstream' into import-xdmf2-library 0b284a49 xdmf2 2012-08-01 (reduced)
-
- 04 Aug, 2012 2 commits
-
-
David Gobbi authored
2b3a9570 COMP: Fix name of vtkRenderingMatplotlibObjectFactory source file.
-
David Gobbi authored
Change-Id: Ia71c879cb3c0e42ca0a1885a7f49293c9f3be5da
-
- 03 Aug, 2012 10 commits
-
-
Dave DeMarle authored
didn't catch this until I did a clean build Change-Id: I862883d6520ca598c2f0c28adc09f34f9f2ea780
-
David Gobbi authored
dc7f9b88 Rename MathText module to RenderingMathText.
-
David Gobbi authored
Change-Id: I2898648f6843f5837677dacac278a1eb50104bd7
-
Dave DeMarle authored
Change-Id: I55a9a294fdcd5b94a390b1ac9e95fe1e7956e967
-
Brad King authored
Commit dd2c9df0 (Cleanup building of static modules for Python, 2012-08-02) dropped use of python_add_module but did not port all functionality to the new macro. Add a missing property to remove the "lib" prefix from python module names. Otherwise they cannot be imported by python. Change-Id: Ica3539fbb86a4147499e4bedb7dfe3900a645896
-
Chris Harris authored
6165a7ec Removed *_OUTPUT_PATH variables from VTK
-
Dave DeMarle authored
Now that ParaView's VisItBridge is a module it is being wrapped automatically, and the automatic wrapping does the hierachy traversal. As a kit the wrapping did not but the wrapped lib worked well enough. The problem is that hierarchy wrapping brings in files from VisIt that break the wrapper generators. This change makes it work more like it used to. Change-Id: I17c138e37f45b52775e8d0fbd02f417f750a663f
-
David C. Lonie authored
c7c278a9 Fixing wrapping issue.
-
Utkarsh Ayachit authored
vtkGL2PSContextDevice2D cannot be wrapped since its parent class is not wrapped. Adding it to WRAP_EXCLUDE group. Change-Id: Id1072d3ead8fb147d503c7d3b324f6ea2caef9f8
-
- 02 Aug, 2012 20 commits
-
-
Pat Marion authored
881e17d3 Fixing static python to import modules on demand.
-
Utkarsh Ayachit authored
Fixing vtkPythonAppInit to import statically linked modules when first called rather than immediately after intialization. This was an oversight during the changes to cleanup static python builds. Change-Id: I2a2155c9c4d0d3109f44dafd1cf0f75b1d7f8cc6
-
Utkarsh Ayachit authored
f45295e3 Specify export visibility flags only for shared builds. b1c7c43a Fixes bugs when BUILD_SHARED_LIBS was ON. dd2c9df0 Cleanup building of static modules for Python.
-
Dave DeMarle authored
Change-Id: I954306ad95eb3f2754fbc6bfabb20545cea04c83
-
Dave DeMarle authored
Change-Id: I40de45818f380f18007318d5ea9a75b3fd255658
-
Utkarsh Ayachit authored
When building static builds, since the export visibilty flags are not set for all libraries, we were getting warnings with mismatched visibility when linking vtkpython statically. Overcome the issue by not sepecifying visbility flags for static builds. Change-Id: Ic993920fa51119d5002f28ee5996abeab1b3bb4e
-
Utkarsh Ayachit authored
vtkPythonWrapping was setting dependencies even when BUILD_SHARED_LIBS was ON. This was resulting in vtkpython dependending on the modules are compile time acceidentally. Fixed that. Modules were being added using vtk_add_library() call. That call sets properties on the target that are not necessarily applicable to "Modules" and was raising compiler errors when BUILD_SHARED_LIBS was ON. Fixed that. Now vtk_add_library() is only called when building static (it's needed in that case since the static module needs to be treated as a regular library and must be added the exports so that applications can link against it). Change-Id: Ic0219e7b28d644e9a755fb5f494cbfc6d71dfd09
-
Dave DeMarle authored
Change-Id: I346da30748900861186d578ffe98b2aeac9d1373
-
XDMF Developers authored
Extract upstream xdmf2/vtk using the following shell code. sha1=24470abd4314e60d2b8838447c75c7f7ea4d4132 && git archive --prefix=xdmf2vtk-reduced/ $sha1:vtk -- | tar x Change-Id: I1bf8a739272d630da598b85b6767dc2614e84abb
-
Dave DeMarle authored
Change-Id: I0f11c0371432b4e446af4e13923f65595912bc30
-
Dave DeMarle authored
Change-Id: Ic2c465fe83ec958052f5f629b40160b8d7d62df5
-
XDMF Developers authored
Extract upstream xdmf2 using the following shell code. sha1=24470abd4314e60d2b8838447c75c7f7ea4d4132 && paths=' CMake CMakeLists.txt Copyright.txt XDMFConfig.cmake.in libsrc ' && git archive --prefix=xdmf2-reduced/ $sha1 -- $paths | tar x Change-Id: I586841a057d403c6a6ba6d221d4337a73f4e3548
-
Utkarsh Ayachit authored
This commit lays the ground work to enable building of python modules for static VTK builds. This cleans up the code that creates the header file with the list of modules to be initialized. vtkpython now can be built even when BUILD_SHARED_LIBS is OFF. It statically initializes the python wrapped modules. Macros to add python modules or generate initialization header file have been removed from FindPythonLibs.cmake (and should be deprecated from CMake as well). Instead new VTK-specific macros are now added to vtkPythonWrapping.cmake that use the information provided by the VTK-modules API to generate the initialization header when bulding statically. Change-Id: Icca5ccd34397f264dadfe00213501cd4a0eea8b5
-
Marcus D. Hanwell authored
dca42b89 Move #include "vtkExecutionTimer.h" to the top of the list e63bf5e7 Incorporate Andrew Maclean's style&comment suggestions c0afc7da Add test for vtkExecutionTimer aa816adc New widget to time the execution of a single filter
-
David C. Lonie authored
90090e99 Merge 'VTK/master' into MathTextGL2PS 32b956e8 Clean up some compiler warnings on Mac and Windows. 8a1a5278 Add missing return statements to tests. b7c0d1cc Add functions to check if MathText is available at runtime. 564112e2 Add a GL2PS special case for vtkTextActor3D. c2f54b97 Add a vtkMatplotlib module. 82e58fc1 Update vtkGL2PSExporter, add Rendering/GL2PS module e74980cc Add support for gl2psSpecial with PDF output to gl2ps. 6fc42bb5 Bump included gl2ps sources to v1.3.6. cbecf3d6 Add vtkMathTextActor3D for rendering equations in 3D space. a7a7c25a Add vtkMathTextActor for rendering equation overlays. f16724a2 Add MathText drawing functionality to Context2D classes. a50a557c Add API to generate vtkPath data and colored images from MathText. b8a3c859 Add a vtkPath class to represent lines and Bezier curves.
-
David C. Lonie authored
16838f7c Move FontConfig font lookup to its own module.
-
David C. Lonie authored
Resolved Conflicts: Rendering/MathText/vtkMathTextUtilities.cxx * Header changes clashed Change-Id: I3513fe9e07af2f6c161a8222f02badebee3feda1
-
Andy Wilson authored
Per Andrew Maclean's suggestion, that particular #include is now at the top of the list and set apart by whitespace. Let there be no doubt at all about what's being tested! Change-Id: I5c87695dcf9f966f570d749622402d958998ffb0
-
Andy Wilson authored
1) VTK-style comments on all the methods in the .h file. I have no idea what I was thinking (or not) when I forgot to do these. 2) Copyright changed from Sandia to VTK standard. 3) Added #include <cstdlib> to TestExecutionTimer.cxx to make sure EXIT_SUCCESS is defined. 4) Condensed the output from the test. 5) Replace the guts of the test with the guts of the vtkDelaunay2D test so that it takes a little while longer. 6) Switch the output to 8 digit fixed precision to make it much less likely that times will be rounded to zero. Change-Id: Ic6b86fc5645d979fbeacca22f8bb68990ecc3890
-
- 01 Aug, 2012 5 commits
-
-
Marcus D. Hanwell authored
These are replaced by the standard CMAKE_*_OUTPUT_DIRECTORY variables, where most instances were replaced (or removed where they did not look necessary). Change-Id: I9d33a1819516b14b6d7024ff1d6d7c4b60efaf36
-
Matt McCormick authored
The code to avoid unrecognized characters at the end of a MetaVesselTube was consuming the next object, in particular the ObjectType field, which interferes with the ability read a scene file. Change-Id: I124b0e058adb497f5d4d793826cb63a60dc66bca
-
Matt McCormick authored
-
Matt McCormick authored
The code to avoid unrecognized characters at the end of a MetaVesselTube was consuming the next object, in particular the ObjectType field, which interferes with the ability read a scene file.
-
David C. Lonie authored
This removes the VTK_USE_FONTCONFIG option and is more consistent with the modular approach. Change-Id: Iaa7383667b116a0e9b596f9467b824710e865b5f
-