- Oct 15, 2012
-
-
Dave DeMarle authored
Change-Id: I83d02922b9bf812a09361725cd670168b8b395d6
-
Utkarsh Ayachit authored
Change-Id: I61114423e394561e6838e8ab262f0045892ac2c5
-
Utkarsh Ayachit authored
STL ascii reader was reporting error when eof was reached at an expected location. This was causing the reader to fail for the STL file attached with the bug report. Change-Id: I734d2c8d8c85854df3d2a63bae6ba23bccf7a9c2
-
- Oct 11, 2012
-
-
David Gobbi authored
Change-Id: I2be1dafef75133771c3439d7ec07c9aecbd1e19a
-
- Oct 04, 2012
-
-
Dave DeMarle authored
Change-Id: Iee2c23a61f4dc711bd40d3ce36dab0ade7f2df3d
-
Mathieu Malaterre authored
Change-Id: I130bf617245dc231b0fddc8f96f15707be9fc6a1
-
Bill Lorensen authored
Non-ascii characters detected with: grep -P "[\x80-\xFF]" Change-Id: I3ec0f875fa15719a0779ab4bba8c955a6a8a20a7
-
- Oct 03, 2012
-
-
Dave DeMarle authored
Change-Id: I88eaf5afaaa9e723c54db0caf1920fe1ca3d011a
-
Dave DeMarle authored
Change-Id: I9a32ed4c9484ba8bdacc1f1f5fd1f3b1289e0746
-
- Sep 27, 2012
-
-
Dave DeMarle authored
Change-Id: I2448775ea1e97fc903402d498c524b41d9f4f260
-
David Gobbi authored
Fix compatibility issues with recent commit 5316dff1. It used the new "import as" syntax that isn't supported on python 2.5 and earlier. It also used a new signal/slot mechanism that is only available in PyQt 4.5 and later, even though the old signal/slot mechanism was still being used elsewhere in the file (mixing old and new ways of doing the same thing in a single file makes the code hard to read). The test TestQVTKRenderWindowInteractor.py did not draw anything, because it didn't connect the renderer to the render window, nor did it initialize the interactor. It also used two-space indentation in some places and four-space indentation in others. Change-Id: Ie41798554cce2d1ffe5705ec198d191d9e18cb08
-
Félix C. Morency authored
The vtkRenderWindow was never finalized which caused GLXBadDrawable errors on application exit if using multiple QVTKRenderWindowInteractor. This patch provides a cleanup mechanism to finalize the vtkRenderWindow before its destruction/close preventing GLXBadDrawable errors. This patch works in both embedded and non-embedded cases. This patch also provides a test case for QVTKRenderWindowInteractor. DDM: commit manufactured to force dashboard tests Change-Id: Ie86d17fe7648868f8f1d5e4b00f52419d5f35a5b
-
- Sep 26, 2012
-
-
Dave DeMarle authored
Change-Id: Id8cfdf9587d58b1fca13a715d40c8dd838be7070
-
David Gobbi authored
The ckalloc() function that Tcl uses for memory allocation has been changed in Tcl 8.6 to return "void *" instead of "char *". Change-Id: I7a09bd1e247748c4f4b4b017ca26f1cc8130463d
-
David Gobbi authored
The isinf() and isnan() macros on FreeBSD are defined in terms of the isinf() and isnan() library functions. A macro expansion bug in the VTK 5.10 wrappers caused these macros to expand recursively, resulting in a segfault in the wrapper tools. The macro expansion bug is fixed in VTK 6, but VTK 5.10 requires the vtkMath IsNan() and IsInf() inline definitions to be blocked. Change-Id: Ifc4ce554fd7273367f3fa6c6dad3b26dfa7871d4
-
Dave DeMarle authored
Specifically: git diff 05ce589b 4d08e39d > patch apply that to release branch and merge in Change-Id: Icac2fc5d22bf0419b6862a40899d27fd5cad9310
-
Dave DeMarle authored
Change-Id: I1a266fa2d511315f636bace749bdc8d804483a35
-
- Sep 25, 2012
-
-
Clinton Stimpson authored
Need to invalidate the whole region at the start of WM_PAINT so the desktop compositor will composite the whole area. Change-Id: Id659f35ecbac16466d7ff68603607dff2d40c50e
-
- Sep 24, 2012
-
-
Dave DeMarle authored
Change-Id: I97acf2926faccb729e6c070d80b35dd88a927eec
-
- Aug 30, 2012
-
-
David Gobbi authored
Change-Id: I42d266b80dac50c82d8c0162dfa961120ec8876e
-
David Gobbi authored
Change-Id: If224f6ff9b54a8c45d34dea36f06fae6f167f6aa
-
David Gobbi authored
Change-Id: I870ddbb823afdfbd37ae8ada7ff08d26587d7bef
-
David Gobbi authored
Change-Id: I8d7674716ffb97c0515c06e927107d592cdb85b8
-
David Gobbi authored
Change-Id: Ia156b208d77878b06844418b756eb8a8cc9b2b7a
-
David Gobbi authored
Change-Id: I52b4a3fde69b4f2b0a3193c0ad8515c921dc3bfc
-
David Gobbi authored
Change-Id: I44736732c082f090e2587a9003a1b77a375e3d72
-
David Gobbi authored
Backport of d979cfa1 from master to release. Change-Id: I55b3804af01f3fdac320869ae2c316538f1dd4d2
-
David Gobbi authored
On OS X 10.5, PowerPC, it was reported that vtkWrapJava crashed on some input files, and a stack trace identified a strncat call in part of the code that is meant to handle method names that contain underscores. I could not reproduce the problem on my system (not even by adding asserts to guard against overflows), so I have re-written the code to eliminate strcat and strchr. Backport of 4ee34ca5 from master to release. Change-Id: I50d7b861b86ab185eae9b5acd5b9644cabb7bcf5
-
David Gobbi authored
Commit 8977cc9c did not properly handle the 2-character lookahead required for handling backslashes while preprocessing included files. It would sometimes duplicate the character following the backslash. Backport of fd79beff from master to release. Change-Id: I554c2adf507989364b49b2732dea8388190f35f1
-
David Gobbi authored
The wrapper's C++ preprocessor has its own code for parsing header files. Its file buffer did not have any reserve for lookahead chars. Lookahead is done whenever a backslash appears in the file, so when a backslash was the last character in the buffer, an invalid read occurred. This patch reserves two chars at the end of the buffer for lookahead. Backport of 8977cc9c from master to release. Change-Id: If31871f74ae826365109fb80fa3d643b57b10c4d
-
David Gobbi authored
Fix a bug that could cause delete [] to be called on an unallocated pointer. This bug was introduced in a945dc69, prior to VTK 5.10. Backport of db0edf0a from master to release. Change-Id: I3e0d5b432d43aed43b3bd2fe755d40d7f1c0b90e
-
David Gobbi authored
The hdf5 CMakeLists.txt files give status messages every time it is read, even if there are no config errors or config changes. Backport of 9ecd9724 from master to release. Change-Id: Ie4c9be3fdef2111d941b2924f22754e1f025e3a7
-
David Gobbi authored
If DeepCopy was used to copy a vtkImageProperty with a LookupTable into a vtkImageProperty without a LookupTable, a segmentation fault occurred. Backport of 316062ca from master to release. Change-Id: I1039fd8c9109b9005ae9038b0404c103c141079a
-
Backport of 5f5cc9f0 from master to release. Change-Id: I6616ace49b2d6589a4894945258145f45880f58f
-
If an observer has not been set for the StartWindowLevelEvent, then the vtkInteractorStyleImage is supposed to automatically locate the last vtkImageActor or vtkImageSlice that was added to the renderer, and apply the window/level to that actor. However, there was a bug where if a non-image actor was added to the renderer after the image actor, the image actor would not be found. This patch fixes that bug. Backport of 022d847a from master to release. Change-Id: I58baac006ffe66ef367e196c10f98e60ee6e270e
-
- Aug 24, 2012
-
-
Sean McBride authored
Change-Id: I5fbdfeecbccc44525f55b12386fdc9be7b126942
-
- May 12, 2012
-
-
Dave DeMarle authored
Change-Id: I648fa2c4a99043a1cd70333ed5766372c608990d
-
Dave DeMarle authored
Change-Id: Ie3387cc1728d553f85f6238ea3398627e3bc32a0
-
- May 11, 2012
-
-
Dave DeMarle authored
This reverts commit 35944bf09ccba7f42eb014678033395405feb9aA9. Dashboards found a divide by zero in the alpha computation. Change-Id: I1dd36aad689cd138cc3b912b7711ae4426d57b8f
-
- May 10, 2012
-
-
Sebastien Jourdain authored
Change-Id: I168cce8362bd849015df93de2afad32854373dab
-