Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 821247 | Differences between
and this patch

Collapse All | Expand All

(-)a/share/cmake/modules/FindExtPackages.cmake (-1 / +1 lines)
Lines 34-40 Link Here
34
34
35
# Half (OpenEXR/IlmBase)
35
# Half (OpenEXR/IlmBase)
36
# https://github.com/openexr/openexr
36
# https://github.com/openexr/openexr
37
find_package(Half 2.4.0 REQUIRED)
37
find_package(Imath 3.0 REQUIRED)
38
38
39
# pystring
39
# pystring
40
# https://github.com/imageworks/pystring
40
# https://github.com/imageworks/pystring
(-)a/src/OpenColorIO/BitDepthUtils.h (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
#include <OpenColorIO/OpenColorIO.h>
8
#include <OpenColorIO/OpenColorIO.h>
9
9
10
#include "OpenEXR/half.h"
10
#include "Imath-3/half.h"
11
11
12
12
13
namespace OCIO_NAMESPACE
13
namespace OCIO_NAMESPACE
(-)a/src/OpenColorIO/CMakeLists.txt (-1 / +1 lines)
Lines 207-213 Link Here
207
		public_api
207
		public_api
208
	PRIVATE
208
	PRIVATE
209
		expat::expat
209
		expat::expat
210
		IlmBase::Half
210
		Imath::Imath
211
		pystring::pystring
211
		pystring::pystring
212
		sampleicc::sampleicc
212
		sampleicc::sampleicc
213
		utils::strings
213
		utils::strings
(-)a/src/OpenColorIO/MathUtils.h (-1 / +1 lines)
Lines 9-15 Link Here
9
9
10
#include <OpenColorIO/OpenColorIO.h>
10
#include <OpenColorIO/OpenColorIO.h>
11
11
12
#include "OpenEXR/half.h"
12
#include "Imath-3/half.h"
13
13
14
namespace OCIO_NAMESPACE
14
namespace OCIO_NAMESPACE
15
{
15
{
(-)a/src/OpenColorIO/ops/range/RangeOp.cpp (-1 / +1 lines)
Lines 7-13 Link Here
7
#include <OpenColorIO/OpenColorIO.h>
7
#include <OpenColorIO/OpenColorIO.h>
8
8
9
#include "GpuShaderUtils.h"
9
#include "GpuShaderUtils.h"
10
#include "OpenEXR/half.h"
10
#include "Imath-3/half.h"
11
#include "HashUtils.h"
11
#include "HashUtils.h"
12
#include "MathUtils.h"
12
#include "MathUtils.h"
13
#include "ops/lut1d/Lut1DOpData.h"
13
#include "ops/lut1d/Lut1DOpData.h"
(-)a/src/OpenColorIO/transforms/builtins/ACES.cpp (-1 / +1 lines)
Lines 6-12 Link Here
6
6
7
#include <OpenColorIO/OpenColorIO.h>
7
#include <OpenColorIO/OpenColorIO.h>
8
8
9
#include "OpenEXR/half.h"
9
#include "Imath-3/half.h"
10
#include "ops/fixedfunction/FixedFunctionOp.h"
10
#include "ops/fixedfunction/FixedFunctionOp.h"
11
#include "ops/gradingrgbcurve/GradingRGBCurveOp.h"
11
#include "ops/gradingrgbcurve/GradingRGBCurveOp.h"
12
#include "ops/log/LogOp.h"
12
#include "ops/log/LogOp.h"
(-)a/src/OpenColorIO/transforms/builtins/OpHelpers.cpp (-1 / +1 lines)
Lines 4-10 Link Here
4
4
5
#include <OpenColorIO/OpenColorIO.h>
5
#include <OpenColorIO/OpenColorIO.h>
6
6
7
#include "OpenEXR/half.h"
7
#include "Imath-3/half.h"
8
#include "ops/lut1d/Lut1DOp.h"
8
#include "ops/lut1d/Lut1DOp.h"
9
#include "transforms/builtins/OpHelpers.h"
9
#include "transforms/builtins/OpHelpers.h"
10
10
(-)a/src/apps/ocioconvert/CMakeLists.txt (-1 / +1 lines)
Lines 27-33 Link Here
27
target_link_libraries(ocioconvert
27
target_link_libraries(ocioconvert
28
    PRIVATE
28
    PRIVATE
29
        apputils
29
        apputils
30
        IlmBase::Half
30
        Imath::Imath
31
        ${OCIO_GL_LIB}
31
        ${OCIO_GL_LIB}
32
        oiiohelpers
32
        oiiohelpers
33
        OpenColorIO
33
        OpenColorIO
(-)a/src/apps/ocioconvert/main.cpp (-1 / +1 lines)
Lines 24-30 Link Here
24
#endif // OCIO_GPU_ENABLED
24
#endif // OCIO_GPU_ENABLED
25
25
26
#include "oiiohelpers.h"
26
#include "oiiohelpers.h"
27
#include "OpenEXR/half.h"
27
#include "Imath-3/half.h"
28
28
29
29
30
// Array of non OpenColorIO arguments.
30
// Array of non OpenColorIO arguments.
(-)a/src/apps/ocioperf/CMakeLists.txt (-1 / +1 lines)
Lines 20-26 Link Here
20
target_link_libraries(ocioperf
20
target_link_libraries(ocioperf
21
    PRIVATE
21
    PRIVATE
22
        apputils
22
        apputils
23
        IlmBase::Half
23
        Imath::Imath
24
        oiiohelpers
24
        oiiohelpers
25
        OpenColorIO
25
        OpenColorIO
26
        OpenImageIO::OpenImageIO
26
        OpenImageIO::OpenImageIO
(-)a/src/apps/ocioperf/main.cpp (-1 / +1 lines)
Lines 11-17 Link Here
11
#endif
11
#endif
12
12
13
#include "apputils/argparse.h"
13
#include "apputils/argparse.h"
14
#include "OpenEXR/half.h"
14
#include "Imath-3/half.h"
15
#include "oiiohelpers.h"
15
#include "oiiohelpers.h"
16
#include "utils/StringUtils.h"
16
#include "utils/StringUtils.h"
17
17
(-)a/src/libutils/oiiohelpers/CMakeLists.txt (-1 / +1 lines)
Lines 31-37 Link Here
31
31
32
    PRIVATE
32
    PRIVATE
33
        OpenColorIO
33
        OpenColorIO
34
        IlmBase::Half
34
        Imath::Imath
35
        utils::strings
35
        utils::strings
36
)
36
)
37
37
(-)a/src/libutils/oiiohelpers/oiiohelpers.cpp (-1 / +1 lines)
Lines 5-11 Link Here
5
#include <OpenColorIO/OpenColorIO.h>
5
#include <OpenColorIO/OpenColorIO.h>
6
6
7
7
8
#include "OpenEXR/half.h"
8
#include "Imath-3/half.h"
9
#include "oiiohelpers.h"
9
#include "oiiohelpers.h"
10
#include "utils/StringUtils.h"
10
#include "utils/StringUtils.h"
11
11
(-)a/tests/cpu/CMakeLists.txt (-1 / +1 lines)
Lines 18-24 Link Here
18
            public_api
18
            public_api
19
        PRIVATE
19
        PRIVATE
20
            expat::expat
20
            expat::expat
21
            IlmBase::Half
21
            Imath::Imath
22
            pystring::pystring
22
            pystring::pystring
23
            sampleicc::sampleicc
23
            sampleicc::sampleicc
24
            unittest_data
24
            unittest_data

Return to bug 821247