OpenColorIO icon indicating copy to clipboard operation
OpenColorIO copied to clipboard

A color management framework for visual effects and animation.

Results 363 OpenColorIO issues
Sort by recently updated
recently updated
newest added

This PR is the implementation of the OCIOZ archive config feature (https://github.com/AcademySoftwareFoundation/OpenColorIO/issues/1627). - The OCIO environment variable can now be set to an OCIOZ archive and an archive will work...

When using the new ACES 1.3 ocio config, I'm getting the following error: ``` (283) : error C1101: ambiguous overloaded function reference "greaterThan(half4, half4)" (0) : bool4 greaterThan(unsigned long4, unsigned...

Needs Discussion

Hi, it would be good if the pkg-config script (`OpenColorIO.pc`) was installed when building under MSYS on windows. Here's a simple patch to do that: ```diff --- b/src/OpenColorIO/CMakeLists.txt 2022-06-05 20:59:43.000000000...

Constant globals in HLSL should be `static const` and not just `const`. Without it, we get the following warnings as an example: ``` OpenColorIOTransformShader.ush:10:11: warning: Initializer of external global will...

The Processor cache in the Config object tries to be smart and detect which context variables changed which might invalidate cached results. Unfortunately it currently misses changes to the cccid...

@doug-walker and I quickly discussed about the idea of a mechanism to deprecated colorspace names and aliases. As part of the OpenColorIO Config for ACES, we have included the aliases...

Feature Request
Needs Discussion

I'm having trouble building _static_ OpenImageIO libs against _static_ OpenColorIO builds. ``` CMake Error at /sw/dev/zlewis/packages/OpenColorIO/2.2.0.dev21/platform-linux/arch-x86_64/python-3.8/.shared-0/lib64/cmake/OpenColorIO/OpenColorIOTargets.cmake:61 (set_target_properties): The link interface of target "OpenColorIO::OpenColorIO" contains: expat::expat but the target was not...

Build Issue
To Close

I'm still messing around with this but wanted to share a work in progress for some feedback. This is based off of work I've done with 3d luts here #1681...

👋 This PR is to catch a slipup in #1496 I've only found yesterday. MinGW-based compilers lack ucrtbase's definition of `_strtof_l` completely, and `strtod_l` is also missing from GCC, so...

FileTransform currently loads the LUT from a file no matter what. https://github.com/AcademySoftwareFoundation/OpenColorIO/blob/main/src/OpenColorIO/transforms/FileTransform.cpp#L549 This may be useful for applications to wrap LUTs in memory files along with other data. However, this...