- 11 Mar, 2014 1 commit
-
-
Artur Grunau authored
TGT and campvis-core used to manually define flags that instructed their code to export DLL symbols. However, CMake has a property called DEFINE_SYMBOL that can automatically define export flags when necessary. Refactor the CMakeLists of TGT and campvis-core to make use of it. References #367
-
- 10 Mar, 2014 1 commit
-
-
Artur Grunau authored
CAMPVis used a custom option, CAMPVIS_SHARED_LIBS, to determine whether shared or static libraries should be built. This option partially duplicated the functionality of one of CMake's standard flags, BUILD_SHARED_LIBS. The two could get out of sync, and because CMake only consults BUILD_SHARED_LIBS when deciding how to build a library target, it was possible to get inconsistent and broken build configurations. To prevent that, add BUILD_SHARED_LIBS as an option to CAMPVis' main CMakeLists and replace all references to CAMPVIS_SHARED_LIBS with BUILD_SHARED_LIBS. This makes BUILD_SHARED_LIBS the only flag that controls whether shared or static libraries are built. References #367
-
- 06 Mar, 2014 3 commits
-
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
Data Inspector Jenkins Fix I have fixed all of the Jenkin's errors but there was another thing in source/modules/randomwalk/processors/confidencemapgenerator.cpp which should be fixed but I think the variable in Line 207 may not be used anywhere but it is added to some object in create function. The only thing which I can do is to omit the confidenceMap pointer definition.
-
Christian Schulte zu Berge authored
-
- 05 Mar, 2014 3 commits
-
-
Christian Schulte zu Berge authored
-
mostajab authored
-
Christian Schulte zu Berge authored
Fixed TrackballNavigationEventListener setting the window ratio of its CameraProperty being directly overwritten due to concurrent access.
-
- 03 Mar, 2014 6 commits
-
-
Christian Schulte zu Berge authored
Fix Cppcheck Issues
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
Itk Module Fixes
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
Itk Module Fixes
-
Christian Schulte zu Berge authored
Fixed GCC warnings in ItkImageFilter (false positive). Removed ItkImageFilterKernel, as they throw even more GCC warnings and meanwhile CAMPVis has the GlMorphologyFilter processor doing the same much faster and elegant.
-
- 02 Mar, 2014 6 commits
-
-
Christian Schulte zu Berge authored
Fix Cppcheck Issues
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
Campvis Core Dll
-
Christian Schulte zu Berge authored
* Fixed duplicate symbols of template specialized TextFileParser::readAndParseItems<TextFileParser::ItemSeparatorLines> due to forced inline
-
Christian Schulte zu Berge authored
Campvis Core Dll
-
Christian Schulte zu Berge authored
refs #377
-
- 01 Mar, 2014 4 commits
-
-
Christian Schulte zu Berge authored
Builds and runs fine so far, but no elaborate testing done yet. Compiler throws a bunch of C4275 warning, since sigslot:has_slots<> is used in exported classes but is itself not exported. While this is no direct problem for campvis-internal builds, it should still be fixed some time. refs #377
-
Christian Schulte zu Berge authored
Tgt Dll
-
Christian Schulte zu Berge authored
refs #376
-
Christian Schulte zu Berge authored
Added C4251 to the ignore list for MSVC warnings, occuring due to missing template instantiations of the standard library used in public interfaces of tgt and campvis code. Even though articles such as <http://support.microsoft.com/kb/168958/en-us> provide a clean solution to fix these warnings, I decided that exporting bazillions of std library templates is not worth the effort. As we do not plan to ship TGT without the rest to a variety of systems, the missing exports won't be a problem. BTW: The original tgt library build scripts also deactivate the warning. :) closes #376
-
- 27 Feb, 2014 1 commit
-
-
Christian Schulte zu Berge authored
-
- 23 Feb, 2014 1 commit
-
-
Christian Schulte zu Berge authored
Closes #387: LogViewerWidget now has a checkbox to select the minimum log level to display. Filtering is performed in widget. Checkboxes to enable/disable each log level, however, seemed to be overkill. If one really wants such specific filtering, he/she can use the filter text box.
-
- 22 Feb, 2014 2 commits
-
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
Extended the DataContainerTreeWidget and its corresponding DataContainerTreeModel to support a second level containing the DataHandles of RenderData and ImageSeries items.
-
- 18 Feb, 2014 3 commits
-
-
Christian Schulte zu Berge authored
-
Jenkins Build Bot Win8.1 authored
-
Christian Schulte zu Berge authored
-
- 16 Feb, 2014 2 commits
-
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
* Fixed bug introduced in 8a8f9bba: Mouse wheel handler was modifying wrong slices * Updated README.md
-
- 15 Feb, 2014 5 commits
-
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
-
Christian Schulte zu Berge authored
-
Artur Grunau authored
To build CAMPVis using NMake one had to manually copy several external DLLs into the CMake output directory. There were 2 reasons for that: - our macros treated NMake as a compiler and didn't try to detect what compiler NMake will actually use; as a result, they couldn't find the right external DLLs for NMake-based builds - Visual Studio manages build types independently of CMake and always outputs into a build-type-specific sub-directory of the CMake output directory — that's where we place external DLLs; NMake, on the other hand, relies on CMake for build type selection and will output directly into the CMake output directory; due to this discrepancy, NMake-based builds couldn't find the external DLLs that were copied into the build directory As many popular IDEs (e.g. Qt Creator, Code::Blocks, Eclipse CDT) rely on NMake to build projects on Windows, it makes sense to have a working support for NMake in our build system. Update our compiler detection macros and adjust the CMake output directory to match that of Visual Studio when NMake is used to improve the support for NMake-based builds.
-
- 13 Feb, 2014 2 commits
-
-
Christian Schulte zu Berge authored
* Fixed orientation of XY-slice (flipped along Y axis) * Implemented background for raycasting result * Fixed sum for volume rendering integral evaluation in simpleraycaster.frag
-
Christian Schulte zu Berge authored
Beautifying VolumeExplorerDemo and VolumeRendererDemo sample rederings by fine tuning transfer functions.
-