- Update to 3.1.10.0
- perf: IBA::resample() and oiiotool --resample improvements to
speed up 20x or more #4993
- ImageBuf: IB::localpixels_as_[writable_]byte_image_span #5011
- ImageBufAlgo*: IBA::make_texture now honors "maketx:threads"
hint #5014
- heif: Add IOProxy for input and output #5017 (by Brecht Van
Lommel)
- heif: Can not output AVIF when libheif has no HEVC support
#5013 (by Brecht Van Lommel)
- heif: Error saving multiple images with different bit depths
#5018 (by Brecht Van Lommel)
- webp: Use correct resolution limits for WebpOutput::open #5016
(by Jesse Yurkovich)
- webp: Missing oiio:UnassociatedAlpha on input #5020 (by Brecht
Van Lommel)
- fix: Several bug fixes related to internal use of image_span
#5004
- build: Fix building on OpenBSD #5001 (by Brad Smith)
- deps: Libheif 1.21 support #4992
- deps: Bump build ver to 2.5.1 #5022 (by Zach Lewis)
- deps: Use libheif exported config if available #5012
- tests: Add new ref image for jpeg test #5007
- tests: Fully disable tests when their required dependencies are
missing #5005
- ci: Speed up macos15 intel variant by not installing Qt #4998
- ci: Don't run non-wheel workflows when only pyproject.toml
changes #4997
- ci: Windows runners switched which python version they had
#5010
OBS-URL: https://build.opensuse.org/request/show/1330283
OBS-URL: https://build.opensuse.org/package/show/graphics/OpenImageIO?expand=0&rev=188
16 lines
764 B
Diff
16 lines
764 B
Diff
Index: OpenImageIO-3.1.10.0/src/libOpenImageIO/imageinout_test.cpp
|
|
===================================================================
|
|
--- OpenImageIO-3.1.10.0.orig/src/libOpenImageIO/imageinout_test.cpp
|
|
+++ OpenImageIO-3.1.10.0/src/libOpenImageIO/imageinout_test.cpp
|
|
@@ -360,6 +360,10 @@ test_all_formats()
|
|
// Skip "formats" that aren't amenable to this kind of testing
|
|
if (formatname == "null" || formatname == "term")
|
|
continue;
|
|
+ if (formatname == "heif") {
|
|
+ std::cout << " [skipping " << formatname << " -- not supported here]\n";
|
|
+ continue;
|
|
+ }
|
|
float eps = 0.0f;
|
|
// Allow lossy formats to have a little more error
|
|
if (formatname == "heif" || formatname == "jpegxl")
|