- Mar 13, 2014
-
-
Chris Harris authored
Rather than just waiting the full timeout check the output of the process for the ready_line ( which is configured in launcher.json ). This should resolve timing issues related to server websockets not being ready to receive client connections. Also in error paths rather than return status code 200 (ok) return a reasonable error code. Change-Id: I3cd99ab5758184002500e3b9adc6208d0fd736e0
-
Robert Maynard authored
d353840f Correct warnings about negative unsigned constant values.
-
Brad King authored
Comment reason for <string> inclusion. Change-Id: I7e0b1d7bd52a3ee66f5d078f330520bb7e6461a2
-
Robert Maynard authored
Change-Id: Icc81419ba319821ae5fc68bc8db3eadc2db5f818
-
Brad King authored
Now that <sstream> is not included we need <string> to get std::string when compiling Java wrapper sources. Change-Id: I5b36410f8bdb2e13c497b0adaa11e95142fd56a0
-
Bill Lorensen authored
5988b551 ENH: Unit test for vtkMath
-
Brad King authored
The VTK standard headers include <iosfwd> and make std::istringstream available for use as an incomplete type. That is all vtkXMLReader.h needs. Remove the extra <sstream> include. In particular, by including it before the VTK headers it causes system headers to be included with inconsistent Large File Support definitions on AIX, leading to runtime shared library unresolved symbols. Remove the inclusion to fix this. Change-Id: I78ec9efae24c8f721f079ab8946afcde413fe17f
-
Brad King authored
Avoid using the undocumented SOURCE option to add_custom_command. Replace the ancient SOURCE == TARGET spelling with POST_BUILD. While at it, use a $<TARGET_FILE> generator expression to refer to the executable location of the vtk and pvtk targets. Change-Id: I8fcd894ede6e430dc148dced98f3b404b9ae1101
-
Bill Lorensen authored
A comprehensive test for vtkMath. This UnitTest provides 86% coverage for vtkMath. When combined with TestMath, the total coverage comes to over 96%. The remaining untested lines are special cases that I have not been able to exercise. During the test creation process, these bugs were found: NextCombination() always returned after one interation. Memory leak in SolveLeastSquares Change-Id: I22dfd2198e52f8980445e0ba5e951f811700af16
-
- Mar 12, 2014
-
-
Sebastien Jourdain authored
b4f486ff Improve web compositing for dynamic interaction
-
Sebastien Jourdain authored
This JS version match also the current data generated with the ParaView plugin. Change-Id: I0fe444db0687a803b1f51bc75add796bd042a2a5
-
Andrew Maclean authored
0567a19c Extended filter to support culling unused points.
-
Brad King authored
Change-Id: Ib90785038a14ec5e7f9dc2977f2e09a6e455de7b
-
Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ dd873734 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 1010d0e3..dd873734 Adrien Destugues (1): b1916e0a SystemInformation: Update CPU count code for Haiku Brad King (2): 9c653603 Process: Suppress IBM XL warning about infinite loop in test 88c5a768 Set policy CMP0025 to NEW within KWSys Clinton Stimpson (7): ab6f8c36 FStream: Fix rdbuf() return and use use of FStream in SystemTools. 88165c5e Encoding: Fix bug in kwsysEncoding_DupToNarrow. 2426b57d Encoding: Add support for program arguments argc/argv. e81f2a9e FStream: Fix opening non-existant file. 0d8ef429 Encoding: Help enforce the use of wide apis on Windows. cfbc1cc8 FStream: Remove unused basic_filebuf declaration. b3b20cc0 FStream: Add ability to detect BOM. Jiri Malak (1): e66d99b8 SystemTools: Fix compilation with Open Watcom Matt McCormick (1): b3db597b SystemInformation: Mark EXECINFO_LIB as advanced Muli Baron (1): 606d7d6f Terminal: Add putty-256color as a VT100 color-capable terminal Rolf Eike Beer (2): d2bcbe11 SystemInformation: extract CPU information on Linux/Sparc b2fd7da5 ProcessUNIX: close /proc entry before starting recursion Stephen Kelly (1): dd873734 SystemTools: Remove some unnecessary c_str() calls Ådne Hovda (1): a02a1ad2 SystemInformation: Fix compilation on HP-UX 11.11 hppa Change-Id: Ie37283772a55f9843a778b88361c5bb5c9f8dbb7
-
David C. Lonie authored
73431db6 Rendering/Volume: Convert new baseline to ExternalData content link
-
Brad King authored
This should have been converted prior to addition in the parent commit. Change-Id: I6722de844eb3440334911a7e484fd5f66cae2e0f
-
Brad King authored
2ad9f474 Set CMake Policies CMP0025 and CMP0042 as necessary 3a04542c Examples: Set required CMake version and policies before project() 59836055 Refactor top-level CMake Policy settings as loop 08df7a88 Accelerators/Dax: Remove extra call to cmake_minimum_required ee1c7530 vtkhdf5: Remove extra calls to cmake_minimum_required
-
Dave DeMarle authored
0e07b099 Add new baseline for dashlin1.
-
David C. Lonie authored
Change-Id: Ie94d3e883da1c43a7dc7383a80d73339dbaf5f92
-
Robert Maynard authored
9cc56d49 Add caching for time steps in EnSightGoldReader binary reader.
-
- Mar 11, 2014
-
-
Brad King authored
CMake 3.0 introduces these policies to improve default behavior on OS X. Set them explicitly in VTK to avoid policy warnings. VTK already works with the NEW behavior. Policy CMP0025 affects the project() command when the Apple Clang compiler is used so we need to set it in all the Examples. Policy CMP0042 affects shared libraries on OS X, enabling MACOSX_RPATH by default. Set it in directories where we create libraries. Also tell KWSys to enable MACOSX_RPATH explicitly instead of setting the policy. Change-Id: I543b60ee1b8f629adb150e01ee83d99dddb66f46
-
Brad King authored
Update CMakeLists.txt files in the Examples to call the cmake_minimum_required() command and set policies before calling the project() command. This is necessary because policies may affect the project() command behavior. Change-Id: Id7d4e68b35fabdff29c1ecb0b9e7475e5588b753
-
Brad King authored
Use a loop in the top-level CMakeLists.txt file to set policies, and comment each item with the version of CMake that introduced it. Also do this in Testing/External/CMakeLists.txt since that is used as the top-level source tree for building tests externally. Change-Id: Ic4f0fab6f23d1409ad1140617292f2751896540f
-
Brad King authored
This directory is never used as the top-level source. Change-Id: Id3878915df82c6e69323af625cc5d3906629faf4
-
Brad King authored
Drop calls to this command in subdirectories. They are never used as the top-level source directory. Change-Id: I6249719417ea8adb9297fab9f7e969c944bb3a13
-
David C. Lonie authored
c8bec1f2 Handle polyhedra in vtkUnstructuredGridWriter. 42b0733e Process facestream in vtkExtractUnstructuredGridPiece::RequestData.
-
Utkarsh Ayachit authored
eb41a259 Added ability to control alpha shape output
-
Joachim Pouderoux authored
5d42650d Fix bag plot and functional bag plots tests.
-
Joachim Pouderoux authored
Use precomputed table of densities to avoid precision differences on some machines. Also remove unuseful normalization step in the plot and algorithm. Change-Id: Ifb28b82b276ee93b66f4ddf8f4375f7b3b465b94
-
- Mar 10, 2014
-
-
Change-Id: I7fb57f3a45922d9106e7395329d62e5f060b1417
-
Sean McBride authored
c85fdec0 Fixed clang analyzer warning about reading uninitialized data. d0f7675d Fixed clang analyzer warning about null deref 5c91a749 Suppress clang analyzer warning 4cc7d0f2 Fixed clang analyzer warnings about dereferences e3197161 Fixed null deref found by clang analyzer 5470f390 Fixed clang analyzer warning about dead store to 'cptr'. 9c290871 Fixed clang analyzer warning about dead store to 'itr'. d1926545 Fixed clang analyzer warning about dead store at very end of method. baea339c Fixed clang analyzer warnings about dead stores. 5ff4c6b0 Misc cleanup of code nearby clang analyzer warnings. 67ed07b0 Fixed clang analyzer warnings about dead stores. 8983273a Workaround clang analyzer warning by creating temp variable. c8389e93 Fixed clang analyzer warning about dead store to 'bestTime'. 6296aa13 Fixed clang analyzer warning about dead store to 'index'. 27fa3877 Fixed clang analyzer warning about passing null to memcpy. 480a8f9c Fixed clang analyzer warning about dead store to 'pd'. ...
-
Georg Hammerl authored
Change-Id: I69137fd0b90ae9f5194af99995df6b1af06d1b41
-
Dave DeMarle authored
1d754ec2 fix a compilation warning
-
Dave DeMarle authored
londinium's compiler doesn't realize that the first pass doesn't use xm1, so it complains that it might use it uninitialized. Change-Id: If1263f4075b02aa6d3fcfda8b42b55d7cae72a7e
-
Ben Boeckel authored
d7ec6c1b AVIWriter: Fix a comment typo 3e7585ca AVIWriter: Don't overflow the fourcc storage
-