- 14 Aug, 2013 1 commit
-
-
bonnell authored
1) added #pragma warning(disable:4251) to slivr to remove dll-interface warnings (removed 386 warnings on Windows) 'size_t' to 'int' conversions (mostly when using .size() of an stl containter) 2) 'return' : conversion from 'size_t' to 'int' (cast return to 'int') 3) Change use of 'int' to 'size_t' when 'size_t' is more appropriate. 4) Change use 'size_t' to 'int' when 'int' is more appropriate 5) Cast arguments to functions from 'size_t' to 'int' when 'int' is expected. 6) use 'vtkIdType' when calling vtkDataArry->GetNumberOfTuples() 7) use 'int' when calling vtkDataArray->GetNumberOfComponents() Reduced warnings on Windows from 6633 down to 4900. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21610 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 18 Jul, 2013 1 commit
-
-
brugger authored
I corrected a bug that caused the clipping of double precision structured grids to return zero cells. This resolves #1542. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21441 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 07 Jul, 2013 1 commit
-
-
hrchilds authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21305 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 20 Jun, 2013 1 commit
-
-
camp authored
svn+ssh://portal-auth.nersc.gov/project/projectdirs/visit/svn/visit/branches/camp/hp/src to truck. This check in adds the changes needed to thread the filters of VisIt. I still need to port the VTK changes to the new version of VTK 6 to have everything work. I will send out a message when I have these changes. By default VisIt is build in serial mode. You need to build VisIt with the threading option to have a threaded version. This can be done with the --thread option to build visit script. Or there is a CMake flag VISIT_THREAD. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21206 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 18 Jun, 2013 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21170 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 11 Jun, 2013 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21116 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 08 Jun, 2013 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21094 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 03 Jun, 2013 1 commit
-
-
hkrishna authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@21060 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 09 May, 2013 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20931 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 07 May, 2013 1 commit
-
-
hrchilds authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20903 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 28 Mar, 2013 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20661 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 05 Feb, 2013 1 commit
-
-
brugger authored
I made some more changes for VTK 6.0. I started with versions that Kathleen modified for VTK 6.0 and added conditional compiles for code that wouldn't work with VTK 5.8. These changes were primarily CMake related. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20224 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 04 Feb, 2013 1 commit
-
-
brugger authored
I made some more changes for VTK 6.0. Most of the changes work with VTK 5.8 and 6.0, but a few don't and those are conditionaly compiled. I started with versions that Kathleen modified for VTK 6.0 and added conditional compiles for code that wouldn't work with VTK 5.8. The types of changes made were: 1) filter->SetInput(vtkDataObject); filter->AddInput(vtkDataObvect); filter->RemoveInput(vtkDataObvect); to filter->SetInputData(vtkDataObject); filter->AddInputData(vtkDataObvect); filter->RemoveInputData(vtkDataObvect); 2) filter1->SetInput(filter2->GetOutput()); to filter1->SetInputConnection(filter2->GetOutputPort()); git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20206 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 31 Jan, 2013 2 commits
-
-
brugger authored
I made some more changes for VTK 6.0. Most of the changes work with VTK 5.8 and 6.0, but a few don't and those are conditionaly compiled. I started with versions that Kathleen modified for VTK 6.0 and added conditional compiles for code that wouldn't work with VTK 5.8. The types of changes made were: 1) filter->SetInput(vtkDataObject); filter->AddInput(vtkDataObvect); filter->RemoveInput(vtkDataObvect); to filter->SetInputData(vtkDataObject); filter->AddInputData(vtkDataObvect); filter->RemoveInputData(vtkDataObvect); 2) filter1->SetInput(filter2->GetOutput()); to filter1->SetInputConnection(filter2->GetOutputPort()); 3) output->GetUpdateGhostLevel(); output->GetUpdateNumberOfPieces(); to outInfo->Get( vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS()); outInfo->Get( vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20185 18c085ea-50e0-402c-830e-de6fd14e8384
-
brugger authored
I made some more changes for VTK 6.0. Most of the changes work with VTK 5.8 and 6.0, but a few don't and those are conditionaly compiled. I started with versions the Kathleen modified for VTK 6.0 and added conditional compiles for code that wouldn't work with VTK 5.8. The types of changes made were: 1) filter->SetInput(vtkDataObject); to filter->SetInputData(vtkDataObject); 2) virtual void WriteFile(ofstream *, vtkImageData, int ext[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *); to virtual void WriteFile(ofstream *, vtkImageData *, int ext[6], int wExt[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *, int wExt[6]); git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20184 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 30 Jan, 2013 1 commit
-
-
brugger authored
I made some more changes for VTK 6.0. Most of the changes work with VTK 5.8 and 6.0, but a few don't and those are conditionaly compiled. My plan is to remove the VTK 5.8 cases once we have switched, but this allows the changes to be tested. The types of changes made were: 1) filter->SetInput(vtkDataObject); filter->AddInput(vtkDataObvect); filter->RemoveInput(vtkDataObvect); to filter->SetInputData(vtkDataObject); filter->AddInputData(vtkDataObvect); filter->RemoveInputData(vtkDataObvect); 2) filter1->SetInput(filter2->GetOutput()); to filter1->SetInputConnection(filter2->GetOutputPort()); 3) output->GetUpdateGhostLevel(); output->GetUpdateNumberOfPieces(); to outInfo->Get( vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS()); outInfo->Get( vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); 4) virtual void WriteFile(ofstream *, vtkImageData, int ext[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *); to virtual void WriteFile(ofstream *, vtkImageData *, int ext[6], int wExt[6]); virtual void WriteFileHeader(ofstream *, vtkImageData *, int wExt[6]); git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20178 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 29 Jan, 2013 2 commits
-
-
brugger authored
I converted all the vtk classes that inherit from vtkUnstructuredGridToUnstructuredGridFilter to inherit from vtkUnstructuredGridAlgorithm, since vtkUnstructuredGridToUnstructuredGridFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20163 18c085ea-50e0-402c-830e-de6fd14e8384
-
brugger authored
I converted all the vtk classes that inherit from vtkDataSetToUnstructuredGridFilter to inherit from vtkUnstructuredGridAlgorithm, since vtkDataSetToUnstructuredGridFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20161 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 25 Jan, 2013 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20152 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 24 Jan, 2013 1 commit
-
-
bonnell authored
Fix compile error caught by Visual Studio (apparently gcc does not catch this). A function with a non-void return type must return a value. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20130 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 23 Jan, 2013 1 commit
-
-
brugger authored
1) I modified all the vtk classes that inherit from vtkRectilinearGridToPolyDataFilter vtkStructuredGridToPolyDataFilter vtkUnstructuredGridToPolyDataFilter to vtkPolyDataAlgorithm since those classes are deprecated and aren't in VTK6. 2) I updated the rzzeus config site file to use Silo 4.9-pre1. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20114 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 22 Jan, 2013 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20091 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 10 Jan, 2013 1 commit
-
-
brugger authored
I modified all the vtk classes that inherit from vtDataSetToPolyDataFilter to inherit from vtkPolyDataAlgorithm, since vtkDataSetToPolyDataFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19996 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 09 Jan, 2013 2 commits
-
-
brugger authored
I modified all the vtk classes that inherit from vtDataSetaToDataSetFilter to inherit from vtkDataSetAlgorithm, since vtkDataSetToDataSetFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19971 18c085ea-50e0-402c-830e-de6fd14e8384
-
brugger authored
I modified all the vtk classes that inherit from vtkPolyDataToPolyDataFilter to inherit from vtkPolyDataAlgorithm, since vtkPolyDataToPolyDataFilter is deprecated and isn't in VTK6. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19965 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 08 Jan, 2013 1 commit
-
-
brugger authored
I eliminated some deprecated VTK coding. In particular: I replaced vtkTypeRevisionMacro with vtkTypeMacro I eliminated vtkCxxRevisionMacro git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19953 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 15 Nov, 2012 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19600 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 19 Oct, 2012 1 commit
-
-
hkrishna authored
updating vtkpng vtkjpeg vtktiff vtkfreetype,etc.. to use VTK_PNG_LIBRARIES VTK_JPEG_LIBRARIES, etc.. cmake variables. This is because External VTK builds may use libraries that don't depend on vtk versions git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19396 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 16 Oct, 2012 1 commit
-
-
bonnell authored
Couple of double precision changes to preserve coordinate type, and correct a couple of place where vtkFloatArrays were created, but should have been vtkDoubleArrays. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19378 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 06 Sep, 2012 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19132 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 30 Aug, 2012 1 commit
-
-
bonnell authored
Some low-hanging (easy to fix) doble-precision changes to preserve coordinate type, and a small amount of code cleanup (remove unused vars). git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19098 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 14 Aug, 2012 1 commit
-
-
bonnell authored
Modified vtkCracksClipper to inherit from vtkVisItClipper. (resolves #1006) git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@19000 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 08 Aug, 2012 2 commits
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18972 18c085ea-50e0-402c-830e-de6fd14e8384
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18971 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 07 Aug, 2012 1 commit
-
-
bonnell authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18965 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 26 Jul, 2012 1 commit
-
-
brugger authored
I made a number of changes to the multi-pass CSG discretization to improve performance. These include: a) I increased the number of boundaries that can be handled from 128 to 512. b) I modified the discretization to perform the partitions against all the boundaries and then create a vtkDataSet at the end rather than creating a new vtkDataSet after partitioning with each boundary. c) I changed the discretization to only process a portion of the mesh on each processor instead of the entire mesh. Previously each processor processed the entire mesh. git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18840 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 09 Jul, 2012 2 commits
-
-
js9 authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18712 18c085ea-50e0-402c-830e-de6fd14e8384
-
js9 authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18710 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 30 Apr, 2012 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@18004 18c085ea-50e0-402c-830e-de6fd14e8384
-
- 22 Apr, 2012 1 commit
-
-
whitlocb authored
git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@17967 18c085ea-50e0-402c-830e-de6fd14e8384
-