summaryrefslogtreecommitdiff
path: root/graphics/openimageio/patches/patch-src_libOpenImageIO_formatspec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/openimageio/patches/patch-src_libOpenImageIO_formatspec.cpp')
-rw-r--r--graphics/openimageio/patches/patch-src_libOpenImageIO_formatspec.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/graphics/openimageio/patches/patch-src_libOpenImageIO_formatspec.cpp b/graphics/openimageio/patches/patch-src_libOpenImageIO_formatspec.cpp
new file mode 100644
index 00000000000..9eec460bbba
--- /dev/null
+++ b/graphics/openimageio/patches/patch-src_libOpenImageIO_formatspec.cpp
@@ -0,0 +1,13 @@
+$NetBSD: patch-src_libOpenImageIO_formatspec.cpp,v 1.1 2014/04/07 12:15:55 ryoon Exp $
+
+--- src/libOpenImageIO/formatspec.cpp.orig 2014-04-03 06:08:57.000000000 +0000
++++ src/libOpenImageIO/formatspec.cpp
+@@ -192,7 +192,7 @@ ImageSpec::format_from_quantize (int qua
+ quant_max <= std::numeric_limits <int>::max()) {
+ return TypeDesc::INT;
+ } else if (quant_min >= 0 &&
+- (unsigned int) quant_min >= std::numeric_limits <unsigned int>::min() &&
++ //(unsigned int) quant_min >= std::numeric_limits <unsigned int>::min() &&
+ quant_max >= 0 &&
+ (unsigned int) quant_max <= std::numeric_limits <unsigned int>::max()) {
+ return TypeDesc::UINT;