-
Notifications
You must be signed in to change notification settings - Fork 625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port EXR to vs2010- #5
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
non-zero floats that are small enough to be converted to half zeroes.
At his request, removed Luc-Eric Rousseau from AUTHORS.
in 14 instead of 12 bytes. In most cases, image quality is the same as before; in a few cases it is better.
exrdisplay and playexr displays OpenEXR images correctly.
Adding new playexr program.
… and OpenEXR_Viewers
+ near() and far() in ImathFrustum are now updated to be nearPlane() and farPlane() to prevent conflicts with #defines on windows. The hither() and yon() functions remain but can be considered deprecated. + ImathBox now supports infinite functions analogous to the empty functions (isInfinite(), makeInfinite()), and the ImathBoxAlgo transform code has been updated accordingly. + ImathBoxAlgo has an additional transform() overload that takes the result as the last argument. + ImathMatrix now has matrix minor and detriminant functions. + ImathMatrixAlgo now has outerProduct(), addOffset() and computeLocalFrame() functions.
'near' and 'far' have been renamed to 'nearPlane' and 'farPlane' due to conflicts with certain windows headers. The former alternate accessor names for these values on windows ('hither' and 'yon') remain, though should be considered deprecated. (David Lenihan) * Added SVD, eigenvalue solver, and procrustes fit calculations to ImathMatrixAlgo. (Chris Twigg, Ji Hun Yu) * Added Imath::FrustumTest for frustum visibility testing. (Eric Johnston) * Fixed a stack corruption in the matrix minorOf functions. (Nick Rasmussen) * Visual studio 2008 project files have been added to the vc/vc9 directory, and several minor visual studio compile fixes have been applied. (Nick Rasmussen)
…in the build process.
…d with the visibility attribute. Added VS2010 project files. Updated Window README files to reflect current state of build system. Updated deploy .cmd files appropriately. Did not update VS2003/2005/2008 vcproj files! This must be done before release. Added MSVC intermedidate files to .gitignore BaseExc is no longer derived from std::string (because std::string is not adorned for export from the STL on MSVC) Added operators to BaseExc to preserve string interface Made throwErrnoExc not segfault on windows Fixed miscellaneous precision loss warnings Fixed zlib problems on MSVC (ZLIB_WINAPI must not be specified in EXR source code) Fix MSVC runtime segfault in ScanLineInputFile::readPixels Fix miscellaneous (but not all) signed/unsigned assignment warnings Use !! instead of bool constructor Modify IlmImfTest so that it is runnable on Windows Repair some (but not all) 3 space tabs to 4 spaces Note: testRgba.cpp has no functional change in the diff, only tab replacement Added not-yet-functional con
Closed
Closed
cary-ilm
pushed a commit
to cary-ilm/openexr
that referenced
this pull request
Jul 16, 2024
) * Whitespaces and licensing * WIP OpenEXRCore implementation * Brand new spanking blosc build. * Switch to single Scanline zstd compression and Single implementation * Fixed the tests * Undo whitespace changes * Last touches * Revert extra build changes Signed-off-by: Vlad-Andrei Lazar <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Explicitly exported all symbols. For gcc the macros need to be updated with the visibility attribute.
Added VS2010 project files.
Updated Window README files to reflect current state of build system.
Updated deploy .cmd files appropriately. Did not update VS2003/2005/2008 vcproj files! This must be done before release.
Added MSVC intermedidate files to .gitignore
BaseExc is no longer derived from std::string (because std::string is not adorned for export from the STL on MSVC)
Added operators to BaseExc to preserve string interface
Made throwErrnoExc not segfault on windows
Fixed miscellaneous precision loss warnings
Fixed zlib problems on MSVC (ZLIB_WINAPI must not be specified in EXR source code)
Fix MSVC runtime segfault in ScanLineInputFile::readPixels
Fix miscellaneous (but not all) signed/unsigned assignment warnings
Use !! instead of bool constructor
Modify IlmImfTest so that it is runnable on Windows
Repair some (but not all) 3 space tabs to 4 spaces
Note: testRgba.cpp has no functional change in the diff, only tab replacement
Added not-yet-functional con