- 08 Mar, 2016 1 commit
-
-
Kitware Robot authored
Code extracted from: https://gitlab.kitware.com/third-party/proj.git at commit 41bdf05361007f8c5186f3df9944d86bb273ed13 (for/vtk).
-
- 28 Jan, 2016 1 commit
-
-
Sean McBride authored
Find/replace of: with C++ counterparts. Changed only vtk*.cxx files. Didn’t touch .h or .c or any 3rd party.
-
- 30 Oct, 2015 1 commit
-
-
Brad King authored
VTK no longer supports any compilers/platforms on which the C++ streams have buggy EOF handling. Drop our compatibility layer for this case.
-
- 28 Aug, 2012 1 commit
-
-
Berk Geveci authored
Some of the module dependencies were somewhat weird, like IOImage depending on IOGeometry and Rendering depending on XML which contains all XML reader. Fixed the depency problems by creating XMLParser and Movie modules and moving some classes to them. I also moved many classes to RenderingCore because they were only needed there. One other minor change is to change vtkProperty to use vtkImageReader2Factor such that it didn't explicitely depend on bunch of reader. This will allow us to add/remove readers to IOImage more easily. Change-Id: Iaaa2edffd31193c13a4ef59e5be5b3eeada3501e
-
- 10 May, 2012 1 commit
-
-
Brad King authored
Use size_t for memory buffer sizes and vtkTypeInt64 for file positions and offsets exposed in header files. Use vtkTypeUInt64 for sizing and indexing of whole data. The latter will be necessary to read small portions of data requiring 64-bit indexes on 32-bit architectures. Use std::streampos for stream seek operations but avoid exposing it in header files because its type can vary on some platforms depending on preprocessor definitions for large file support. Change-Id: I5c6eb335fb2415de652f012fbf34e2f2952e443a
-
- 09 Apr, 2012 2 commits
-
-
VTK Developers authored
Exclude ThirdParty, Utilities/MetaIO, and Utilities/KWSys as these are maintained outside VTK. Co-Author: Marcus D. Hanwell <marcus.hanwell@kitware.com> Co-Author: Chris Harris <chris.harris@kitware.com> Co-Author: Brad King <brad.king@kitware.com>
-
VTK Developers authored
Move source files from their former monolithic VTK location to their new location in modular VTK without modification. This preserves enough information for "git blame -M" and "git log --follow" to connect modularized VTK files to their original location and history. Co-Author: Marcus D. Hanwell <marcus.hanwell@kitware.com> Co-Author: Chris Harris <chris.harris@kitware.com> Co-Author: Brad King <brad.king@kitware.com> Co-Author: Nikhil Shetty <nikhil.shetty@kitware.com>
-
- 20 May, 2010 1 commit
-
-
Mark Olesen authored
The CVS $Revision$ keyword replacement will no longer maintain these macros automatically. They were used only to implement CollectRevisions and vtkObjectBase::PrintRevisions, an API that was never used. Automated as follows: pass 0: catch templates --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<' pass 1: main changes --------------- $ git grep -l '^vtkCxxRevisionMacro' | while read file; do echo "$file" 1>&2 perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file done $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do echo "$file" 1>&2 perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file done pass 2: verify --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' Fixed multi-line vtkCxxRevisionMacro and templates by hand.
-
- 23 Apr, 2010 1 commit
-
-
Mark Olesen authored
The CVS $Revision$ keyword replacement will no longer maintain these macros automatically. They were used only to implement CollectRevisions and vtkObjectBase::PrintRevisions, an API that was never used. Automated as follows: pass 0: catch templates --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<' pass 1: main changes --------------- $ git grep -l '^vtkCxxRevisionMacro' | while read file; do echo "$file" 1>&2 perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file done $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do echo "$file" 1>&2 perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file done pass 2: verify --------------- $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' Fixed multi-line vtkCxxRevisionMacro and templates by hand.
-
- 17 Nov, 2008 1 commit
-
-
Burlen Loring authored
BUG: Common/vtkXMLDataElement.cxx Common/vtkXMLDataElement.h IO/vtkXMLDataParser.cxx IO/vtkXMLDataParser.h IO/vtkXMLParser.cxx IO/vtkXMLParser.h Improve read performance while allowing tags to have inline data. STYLE: Graphics/vtkQuadraturePointStatistics.cxx Updated documentation.
-
- 25 Jul, 2008 4 commits
-
-
Sebastien Barre authored
ENH: allow user to specify an encoding for the XML parser, and allow developpers to override the creation of the parser itself
-
Sebastien Barre authored
ENH: allow user to specify an encoding for the XML parser, and allow developpers to override the creation of the parser itself
-
Sebastien Barre authored
ENH: fix error report location, this wasn't helping if the XML was not indented properly, or not indented at all (which is not a requirement)
-
Sebastien Barre authored
ENH: fix error report location, this wasn't helping if the XML was not indented properly, or not indented at all (which is not a requirement)
-
- 10 Mar, 2008 1 commit
-
-
Dave Demarle authored
BUG: Make the character data handling in XML files optional. It is off for vtk xml file formats, but it can be turned on, as is the case for the LANL Cosmo SVG reader, when it is needed.
-
- 23 Aug, 2005 1 commit
-
-
Utkarsh Ayachit authored
ENH: Added Sandia Painter and Shader support. Painters are fully incorporated, shader support is in-progress.
-
- 26 May, 2005 1 commit
-
-
Mathieu Malaterre authored
-
- 28 Apr, 2004 1 commit
-
-
Brad King authored
ENH: Renamed zlib, png, jpeg, tiff, and expat directories in the Utilities directory to vtkzlib, vtkpng, vtkjpeg, vtktiff, and vtkexpat respectively. Adjusted the include structure so that code includes vtk_zlib.h and automatically gets the version of zlib used by VTK (and similarly for the other libraries). Along with the recent name mangling changes, this now completely isolates VTK's version of these libraries and avoids conflict with system versions or versions in other toolkits.
-
- 26 Apr, 2004 1 commit
-
-
Brad King authored
ENH: Added vtk_expat.h to ensure that VTK finds the correct expat.h when not using system expat. Added vtk_expat_mangle.h to mangle all the public symbols in the vtkexpat library to start with a vtk_expat_ prefix. This will avoid conflicts with applications that link to vtkIO and a separate expat library.
-
- 12 Jan, 2004 1 commit
-
-
Brad King authored
BUG: The HP compiler sets the badbit too often and prevents the SeekG/TellG wrappers from working correctly. This is a work-around.
-
- 30 Dec, 2003 1 commit
-
-
Brad King authored
BUG: Using VTK_STREAM_EOF_SEVERITY to implement TellG and SeekG wrapper methods in a way that should work around all known stream bugs.
-
- 19 Dec, 2003 1 commit
-
-
Brad King authored
BUG: Added vtkXMLParser::TellG and vtkXMLParser::SeekG methods to work-around buggy stream implementations on some platforms.
-
- 18 Dec, 2003 1 commit
-
-
Brad King authored
-
- 14 Nov, 2003 1 commit
-
-
Will Schroeder authored
-
- 13 Jun, 2003 1 commit
-
-
Brad King authored
-
- 27 Feb, 2003 1 commit
-
-
Ken Martin authored
-
- 25 Feb, 2003 1 commit
-
-
Brad King authored
-
- 21 Jan, 2003 1 commit
-
-
Andy Cedilnik authored
-
- 09 Dec, 2002 1 commit
-
-
Andy Cedilnik authored
-
- 05 Dec, 2002 1 commit
-
-
Andy Cedilnik authored
-
- 14 Nov, 2002 1 commit
-
-
Andy Cedilnik authored
-
- 06 Sep, 2002 1 commit
-
-
Brad King authored
-
- 13 Aug, 2002 1 commit
-
-
Brad King authored
-
- 06 Jun, 2002 1 commit
-
-
Brad King authored
-
- 03 Jun, 2002 1 commit
-
-
Brad King authored
ENH: Removed deprecated ParseStream method. Moved implementation to its replacement method, ParseXML.
-
- 30 May, 2002 1 commit
-
-
Andy Cedilnik authored
-
- 29 May, 2002 3 commits
-
-
Brad King authored
-
Andy Cedilnik authored
-
Brad King authored
-
- 26 Apr, 2002 1 commit
-
-
Brad King authored
ENH: Renamed ParseStream to ParseXML and changed organization to make it easier to read from input other than the stream.
-