ChangeLog.ilmbase 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. Version 2.x.x
  2. * Bumped version to track OpenEXR
  3. (Piotr Stanczyk)
  4. Version 2.0.1
  5. * Bumped version to track OpenEXR
  6. (Piotr Stanczyk)
  7. Version 2.0.0
  8. * Bumped version to track OpenEXR
  9. (Piotr Stanczyk)
  10. * Numerous minor fixes, missing includes etc
  11. Version 1.1.0.beta.1
  12. * Added new module PyIlmBase : python bindings for IlmBase
  13. (Nick Rasmussen)
  14. * Added git specific files
  15. (Piotr Stanczyk)
  16. * Minor fixes for newer gcc versions and OS X.
  17. (misc)
  18. * Preparation for OpenEXR v2 release { remove message for final release }
  19. (Piotr Stanczyk)
  20. * Updated the so verison to 10
  21. (Piotr Stanczyk)
  22. * Initial use of the CMake build system
  23. (Nicholas Yue)
  24. Version 1.0.3
  25. * Added support for enabling/disabling large stack optimisations, used in
  26. halfFunction.h.
  27. (Piotr Stanczyk)
  28. * Added ImathNoise.(h/cpp) files. Initializes Perlin noise to match the
  29. Renderman implmenetation.
  30. (Pixar Contribution)
  31. * Fixed a number of missing includes to comply with stricter
  32. enforcement by gnu compilers.
  33. (Piotr Stanczyk)
  34. * Depracated compiler flag: -Wno-long-double since it is no longer
  35. supported under OS X.
  36. (Piotr Stanczyk)
  37. * A minor API change to Imath::Frustum has been made: the functions
  38. 'near' and 'far' have been renamed to 'nearPlane' and 'farPlane' due
  39. to conflicts with certain windows headers. The former alternate
  40. accessor names for these values on windows ('hither' and 'yon')
  41. remain, though should be considered deprecated.
  42. (David Lenihan)
  43. * Added SVD, eigenvalue solver, and procrustes fit calculations
  44. to ImathMatrixAlgo.
  45. (Chris Twigg, Ji Hun Yu)
  46. * Added Imath::FrustumTest for frustum visibility testing.
  47. (Eric Johnston)
  48. * Fixed a stack corruption in the matrix minorOf functions.
  49. (Nick Rasmussen)
  50. * Visual studio 2008 project files have been added to the vc/vc9
  51. directory, and several minor visual studio compile fixes have
  52. been applied.
  53. (Nick Rasmussen)
  54. * Updated the so verison to 7.
  55. (Piotr Stanczyk)
  56. * Depracated the MacCode_Warrior and Shake submodules.
  57. (Piotr Stanczyk)
  58. Version 1.0.2
  59. * Added support for targetting builds on 64bit Windows and minimising
  60. number of compiler warnings on Windows. Thanks to Ger Hobbelt for his
  61. contributions to CreateDLL.
  62. (Ji Hun Yu)
  63. * Removed a spurious restrict qualifier in the matrix manipulation code
  64. that was causing the 64-bit MS compiler to generate code in release
  65. mode that caused incorrect results.
  66. (Ji Hun Yu)
  67. * Added patches for improving universal binaries on OS X. Thanks to
  68. Paul Schneider for the contribution
  69. (Piotr Stanczyk)
  70. * Imath::Box optimization: remove loops from methods by partially
  71. specializing the class, for boxes of two and three dimensions.
  72. (Piotr Stanczyk)
  73. * Added explicit copy constructors to Imath::Matrix33<T> and
  74. ImathMatrix44<T> to make conversions between float and double
  75. matrices more convenient.
  76. (Florian Kainz)
  77. * Added slerpShortestArc() and euclideanInnerProduct() functions
  78. to Imath::Quat<T>.
  79. (Nick Porcino)
  80. * Added 4D vector class template Imath::Vec4<T>.
  81. (Nick Porcino)
  82. * Copy constructors and assignment operators for Matrix33<T>
  83. and Matrix44<T> are up to 25% faster. Added matrix constructors
  84. that do not initialize the matrix (this is faster in cases where
  85. the initial value of the matrix is immediately overwritten anyway).
  86. (Nick Porcino)
  87. * Rewrote function closestPointOnBox(point,box). Shortened
  88. the code, improved numerical accuracy, fixed a bug where
  89. closestPointOnBox(box.center(),box) would return the center
  90. of the +Z side of the box, even if the +/-X or +/-Y sides
  91. were closer.
  92. (Florian Kainz)
  93. * Rewrote function findEntryAndExitPoints() in ImathBoxAlgo.h.
  94. Results are now consistent with those from intersect(), also
  95. in ImathBoxAlgo.h.
  96. (Florian Kainz)
  97. * Made Vec2<T>::length() and Vec3<T>::length() more accurate for
  98. vectors whose length is less than sqrt(limits<T>::smallest());
  99. (Florian Kainz)
  100. * Made Quat<T>::angle() more accurate for small angles.
  101. (Don Hatch)
  102. Version 1.0.1:
  103. * Removed Windows .suo files from distribution.
  104. (Eric Wimmer)
  105. Version 1.0.0:
  106. * Bumped DSO version number to 6.0
  107. (Florian Kainz)
  108. * Rounding during float-to-half conversion now implements
  109. "round to nearest even" mode: if the original float value
  110. is exactly in the middle between the two closest half values
  111. then rounding chooses the half value whose least significant
  112. bit is zero.
  113. (Florian Kainz)
  114. * Installation Tuning:
  115. - Corrected version number on dso's (libtool) - now 5.0
  116. - Separated ILMBASE_LDFLAGS and ILMBASE_LIBS so that test programs
  117. in configure scripts of packages dependent on IlmBase can link
  118. with static libraries properly
  119. - eliminated some warning messages during install
  120. (Andrew Kunz)
  121. Version 0.9.0:
  122. * Initial release of this code as a separate library.
  123. Previously the libraries contained were part of
  124. version 1.4.0 of OpenEXR
  125. * New build scripts for Linux/Unix
  126. (Andrew Kunz)
  127. * New Windows project files and build scripts
  128. (Kimball Thurston)