- Dec 18, 2014
-
-
Sean McBride authored
Used the following command: find . \( -iname *.h -and -type f \) -exec perl -pi -w -e 's/__vtk(.*)_h/vtk$1_h/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings. Change-Id: I694ff053cb204c70e37b261296f496064d91fc07
-
Sean McBride authored
Seems there are only two .hxx files in VTK, change their include guards to use the form vtkFoo_hxx, which is what ITK does. Change-Id: Ie97b1f77569e8d31dd2030c1bca40ca8cdd97b72
-
Sean McBride authored
Used the following command: find . -type f -exec perl -pi -w -e 's/__vtk(.*)_cxx/vtk$1_cxx/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings. Change-Id: I402387e6d034f3f30bfc518768f34f6c73f2ea15
-
Sean McBride authored
Used the following command: find . \( -iname *.in -and -type f \) -exec perl -pi -w -e 's/__vtk(.*)_h/vtk$1_h/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings. Change-Id: I86db91ad530c203347f2b0dfd29c31f843c3f2b7
-
Sean McBride authored
Used the following command: find . \( -iname *.txx -and -type f \) -exec perl -pi -w -e 's/__vtk(.*)_txx/vtk$1_txx/g;' {} \; Fixes many, but not all, clang -Wreserved-id-macro warnings. Change-Id: Ibedcd2ae25394d08d131d56ff2e14e9e7870ece9
-
Sebastien Jourdain authored
1f59e835 Add additional information for Java package build
-
Sebastien Jourdain authored
Change-Id: I362a85049e43c4160c9b24fa8180bcae445986db
-
Sean McBride authored
141198ec Refactoring and cleanup of Cocoa NSWindow and NSView observations
-
- Dec 17, 2014
-
-
Cory Quammen authored
3a27c8e6 Fixed memory errors in newly added tests
-
Dave DeMarle authored
7bcf2313 COMP: fix a valgrind leak in new test
-
- Dec 16, 2014
-
-
Cory Quammen authored
Change-Id: I9633903c5656791f7e4bbc79ce45c7f92d0a197c
-
Sean McBride authored
Now only perform observation at all if it was VTK that created the NSWindow/NSView. This avoids receiving many NSView frame change messages when not needed. Some renaming, new asserts, fix minor type mismatch. Things are more symmetrical now. Change-Id: I337afef3a07fe9e33abdfc6e7e714502262bcc91
-
Dave DeMarle authored
Change-Id: I2ef4a1643fee0e7ef8d10cd49c398d2128e020b7
-
Cory Quammen authored
dafe5a0b Added previous signature back for MapScalars() method
-
Cory Quammen authored
Even though the MapScalars() method is designated an internal method in vtkScalarsToColors and vtkDiscretizableColorTransferFunction classes, backwards compatibily for outside classes that override this method was broken by a signature change for the method in commit 94498364. Hat tip to Marcus Hanwell for identifying the problem with the previous commit and suggesting the fix. Change-Id: I78c05ae4041bb07c9ec3978c4e6cc6e80433d871
-
Tim Thirion authored
628febb8 Update CMakeLists for iOS examples 48752aec Remove shell script for creating VTK framework; update iOS readme 7465b7b4 Add CMake script to allow user to `make framework` for iOS
-
- Dec 15, 2014
-
-
Tim Thirion authored
Also, set vtk.framework path in Xcode projects to CMake default. Change-Id: Iebe4b9eff435c26ef8d6a254487275198ac8f23e
-
Tim Thirion authored
Change-Id: I19f5a6850ab0bdc659b755d38658606e514ee0bd
-
Cory Quammen authored
94498364 Enable coloring by indexed lookup for vtkStringArrays a07731a2 Handle coloring by field data
-
Ken Martin authored
81666b51 Ifdef out some code for OpenGLES systems
-
Ken Martin authored
Change-Id: I6058a1b2623886eab93d7014d11d777144be612d
-
Sean McBride authored
efc3a4e9 Fix possible null deref warnings 53c1f9fb Fix warning about use-after-free c02f83d0 Whitespace/spelling ea3f62ea Removed harmless-looking dead code 42815afe Added vtkErrorMacro to code paths that give null ptrs d5feacbb Fix possible null deref of ‘dsa’ 666d78c2 Advance null check to before cast
-
Ken Martin authored
5c1c4b19 Fix some release graphics resource issues
-
Dan Lipsa authored
Field variable mode_shape[0] represents the time step (t_index) if HasModeShapes is not set or the ModeShape otherwise. Change-Id: Id25aab00dfe04ae142a477650cbc3a17c9b11254
-
David Gobbi authored
ef02d785 Allow absence of i64 suffix when __int64 exists.
-
- Dec 14, 2014
-
-
David Gobbi authored
The dashboard showed a compile failure on icc because the i64 suffix did not exist, even though cmake had detected __int64. This patch uses a suffix of either l or ll if __int64 is really 'long' or 'long long'. Change-Id: I69b90821d25e4937e22bfc9bf63faaeae9472030
-
David Gobbi authored
af541360 Revert "Remove some unecessary casts."
-
- Dec 13, 2014
-
-
David Gobbi authored
VC++ thinks these casts are necessary, even though gcc and clang disagree. This reverts commit 8c45343b. Change-Id: I9c308561e3c0696c66e24e45fd6fa4384c70aa34
-
David Gobbi authored
8c45343b Remove some unecessary casts.
-
Ken Martin authored
ParaView IceT does a WindowRemap when using tile display. That means everythgin has to work with a new window/context so it identifies a bunch of release graphics resource issues. This patch fixes a bunch of them. Mostly minor changes the one large change is to make ReleaseGraphicsResources in Renderer public like it is for every other class. This is the way it should be and the original protected method was a mistake from way way back. Making it public save us from doing the SetRenderWindow(NULL) SetRenderWindow(this) hack that we have been using to free up resources in the renderer since we could nto call the protected method. Change-Id: If31406fa9425417d240311aac110c82409637163
-
Utkarsh Ayachit authored
* pvvtk/pv-master: Change-Id: Ice8ef5928392f9a86c7bfa6af8c640c7eea9ca17
-
7c7c3ca4 Add missing numpy functions previously available in ParaView 4.1. f54b5b9f Merge topic 'enh_xdmf3_writer' into master 9f0d0bae Merge topic 'fix_xdmf2_writer' into master fa2aef48 Merge topic 'update-hdf5' into master acb40959 Enhance Xdmf3 writer to save block names. 2cc28ea5 Fix Xdmf2 writer: array type was not respected. Also save block name. 96db5108 Merge topic 'plotbar_improvement' into master f7bf6158 Merge topic 'qt-warning-take3' into master bed938eb Merge topic 'enum-comma-warning' into master 18f678ac Fix warning about comma at end of enum list. 91dcdaa6 Another attempt to silence warning from Qt header 4bcf0dc2 Prefix BUILD_STATIC_EXECS with HDF5 and make it advanced. 1dc7f42b Merge topic 'sample_distance_issue' into master aab57b1d Merge topic 'fix_xdmf3_dll_export' into master cac3a404 Merge topic 'type-punned-pointer' into master 1dcc3d96 Add functions to get data bounds and number of plotted bars. ...
-
David Gobbi authored
These casts were necessary for really old compilers that didn't keep track of which level of indirection the "constness" applied to. For modern compilers, they should be unecessary. Change-Id: Ia23cebae43fd6f1705016a11f2df4801e9830d24
-
David Gobbi authored
f7475425 Update the readme file for new wrapping capabilities. e13d9aea Only wrap namespaces that have useful contents. 3e100545 Avoid creating duplicate wrapped namespaces. d5cb2382 Wrap constants more efficiently. a5948d9f Move VTK_BUILD_SHARED_LIBS check to generated code. 67a70a82 Allow use of all enum types as method parameters. b271e764 Wrap namespaces in python. 57b47954 Fix two previously undetected wrapper bugs. ba693ade Add an enum type to the python wrappers. f642f513 Wrap enum constant members for non-vtkObject types. a73ab651 Refactor vtkWrapPython into smaller source files.
-
- Dec 12, 2014
-
-
Tim Thirion authored
Change-Id: Id28edc209bd8406129f757fada076050d80ffc3f
-
Sean McBride authored
bdfb1cd8 Removed dubious #undef of keywords
-
Sankhesh Jhaveri authored
414e8695 Fixed incorrect name used for the test file
-
Sean McBride authored
Removed #undef bool #undef void #undef const Which are surely old hacks. Fixes clang -Wkeyword-macro warnings. Change-Id: I850a45677abc9d1063435845dec1c0a85e7d83f8
-
Aashish Chaudhary authored
Change-Id: If7b29947672f8335f682f135e1c010c586f25da8
-