Remove unused patches.

This commit is contained in:
Richard Shaw 2019-04-04 13:33:58 -05:00
parent 4e736d1bdd
commit 11751330b3
3 changed files with 0 additions and 2050 deletions

View File

@ -1,43 +0,0 @@
From f39552d70098a98f7c1fb3b4f020b550ce2dd75a Mon Sep 17 00:00:00 2001
From: Patrick Hodoul <patrick.hodoul@autodesk.com>
Date: Mon, 27 Nov 2017 17:29:57 -0500
Subject: [PATCH] Fix Linux compilation Fix gcc 5.4.0 build breaks Fix the temp
filename for Linux
---
src/core/Lut1DOp.cpp | 4 +++-
src/core/MathUtils.cpp | 23 ++++++++++++-----------
src/pyglue/PyAllocationTransform.cpp | 1 -
3 files changed, 15 insertions(+), 13 deletions(-)
--- a/src/core/MathUtils.cpp
+++ b/src/core/MathUtils.cpp
@@ -374,6 +374,18 @@ OCIO_NAMESPACE_USING
#include "UnitTest.h"
+namespace
+{
+
+ void GetMxbResult(float* vout, float* m, float* x, float* v)
+ {
+ GetM44V4Product(vout, m, x);
+ GetV4Sum(vout, vout, v);
+ }
+
+}
+
+
OIIO_ADD_TEST(MathUtils, M44_is_diagonal)
{
{
--- a/src/pyglue/PyAllocationTransform.cpp
+++ b/src/pyglue/PyAllocationTransform.cpp
@@ -53,7 +53,6 @@ OCIO_NAMESPACE_ENTER
///
int PyOCIO_AllocationTransform_init(PyOCIO_Transform * self, PyObject * args, PyObject * kwds);
- PyObject * PyOCIO_AllocationTransform_equals(PyObject * self, PyObject * args);
PyObject * PyOCIO_AllocationTransform_getAllocation(PyObject * self);
PyObject * PyOCIO_AllocationTransform_setAllocation(PyObject * self, PyObject * args);
PyObject * PyOCIO_AllocationTransform_getNumVars(PyObject * self);

File diff suppressed because it is too large Load Diff

View File

@ -1,137 +0,0 @@
From d025c2c3e1856f2d8fc15bc10be8a913ea6f1bb6 Mon Sep 17 00:00:00 2001
From: Larry Gritz <lg@larrygritz.com>
Date: Wed, 3 Oct 2018 14:54:48 -0700
Subject: [PATCH] Compatibility with OIIO 1.9+, minor ImageInput/ImageOutput
API changes
---
src/apps/ocioconvert/main.cpp | 12 ++++++++----
src/apps/ociodisplay/main.cpp | 7 +++----
src/apps/ociolutimage/main.cpp | 15 ++++++++-------
3 files changed, 19 insertions(+), 15 deletions(-)
--- a/src/apps/ocioconvert/main.cpp
+++ b/src/apps/ocioconvert/main.cpp
@@ -119,7 +119,7 @@ int main(int argc, const char **argv)
std::cerr << "Loading " << inputimage << std::endl;
try
{
- OIIO::ImageInput* f = OIIO::ImageInput::create(inputimage);
+ auto f = OIIO::ImageInput::create(inputimage);
if(!f)
{
std::cerr << "Could not create image input." << std::endl;
@@ -143,7 +143,9 @@ int main(int argc, const char **argv)
memset(&img[0], 0, imgwidth*imgheight*components*sizeof(float));
f->read_image(OIIO::TypeDesc::TypeFloat, &img[0]);
- delete f;
+#if OIIO_VERSION < 10903
+ OIIO::ImageInput::destroy(f);
+#endif
std::vector<int> kchannels;
//parse --ch argument
@@ -308,7 +310,7 @@ int main(int argc, const char **argv)
// Write out the result
try
{
- OIIO::ImageOutput* f = OIIO::ImageOutput::create(outputimage);
+ auto f = OIIO::ImageOutput::create(outputimage);
if(!f)
{
std::cerr << "Could not create output input." << std::endl;
@@ -318,7 +320,9 @@ int main(int argc, const char **argv)
f->open(outputimage, spec);
f->write_image(OIIO::TypeDesc::FLOAT, &img[0]);
f->close();
- delete f;
+#if OIIO_VERSION < 10903
+ OIIO::ImageInput::destroy(f);
+#endif
}
catch(...)
{
--- a/src/apps/ociodisplay/main.cpp
+++ b/src/apps/ociodisplay/main.cpp
@@ -41,9 +41,6 @@ namespace OCIO = OCIO_NAMESPACE;
#include <OpenImageIO/imageio.h>
#include <OpenImageIO/typedesc.h>
-#if (OIIO_VERSION < 10100)
-namespace OIIO = OIIO_NAMESPACE;
-#endif
#ifdef __APPLE__
#include <OpenGL/gl.h>
@@ -106,7 +103,7 @@ static void InitImageTexture(const char
std::cout << "loading: " << filename << std::endl;
try
{
- OIIO::ImageInput* f = OIIO::ImageInput::create(filename);
+ auto f = OIIO::ImageInput::create(filename);
if(!f)
{
std::cerr << "Could not create image input." << std::endl;
@@ -137,7 +134,9 @@ static void InitImageTexture(const char
OIIO::TypeDesc::TypeFloat,
#endif
&img[0]);
+#if OIIO_VERSION < 10903
OIIO::ImageInput::destroy(f);
+#endif
}
catch(...)
{
--- a/src/apps/ociolutimage/main.cpp
+++ b/src/apps/ociolutimage/main.cpp
@@ -32,9 +32,6 @@ OCIO_NAMESPACE_USING;
#include <OpenImageIO/imageio.h>
#include <OpenImageIO/typedesc.h>
-#if (OIIO_VERSION < 10100)
-namespace OIIO = OIIO_NAMESPACE;
-#endif
#include "argparse.h"
@@ -116,7 +113,7 @@ void Generate(int cubesize, int maxwidth
processor->apply(imgdesc);
}
- OIIO::ImageOutput* f = OIIO::ImageOutput::create(outputfile);
+ auto f = OIIO::ImageOutput::create(outputfile);
if(!f)
{
throw Exception( "Could not create output image.");
@@ -128,7 +125,9 @@ void Generate(int cubesize, int maxwidth
f->open(outputfile, spec);
f->write_image(OIIO::TypeDesc::FLOAT, &img[0]);
f->close();
- delete f;
+#if OIIO_VERSION < 10903
+ OIIO::ImageInput::destroy(f);
+#endif
}
@@ -137,7 +136,7 @@ void Extract(int cubesize, int maxwidth,
const std::string & outputfile)
{
// Read the image
- OIIO::ImageInput* f = OIIO::ImageInput::create(inputfile);
+ auto f = OIIO::ImageInput::create(inputfile);
if(!f)
{
throw Exception("Could not create input image.");
@@ -183,7 +182,9 @@ void Extract(int cubesize, int maxwidth,
std::vector<float> img;
img.resize(spec.width*spec.height*spec.nchannels, 0);
f->read_image(OIIO::TypeDesc::TypeFloat, &img[0]);
- delete f;
+#if OIIO_VERSION < 10903
+ OIIO::ImageInput::destroy(f);
+#endif
// Repack into rgb
// Convert the RGB[...] image to an RGB image, in place.