|
issues with sharing the LUT between OpenGL contexts?
2 messages
Having great success replacing my existing display shader stuff with OCIO's. Have it working in a primary window but getting black in a seconding view (using context sharing). I am able to share the p
Having great success replacing my existing display shader stuff with OCIO's. Have it working in a primary window but getting black in a seconding view (using context sharing). I am able to share the p
|
By
Paul Miller
·
|
|
issues with sharing the LUT between OpenGL contexts?
Cool, good to hear! -- Jeremy
Cool, good to hear! -- Jeremy
|
By
Jeremy Selan
·
|
|
Setting OIIO_NAMESPACE
6 messages
Should should not need to set OIIO_NAMESPACE. Even when you build oiio with a custom namespace, OIIO_NAMESPACE is a macro that get's baked into the oiio installation. I've confirmed this works at SPI.
Should should not need to set OIIO_NAMESPACE. Even when you build oiio with a custom namespace, OIIO_NAMESPACE is a macro that get's baked into the oiio installation. I've confirmed this works at SPI.
|
By
Jeremy Selan
·
|
|
Review: Tetrahedral 3D LUT interpolation
https://github.com/imageworks/OpenColorIO/pull/199
https://github.com/imageworks/OpenColorIO/pull/199
|
By
dbr/Ben
·
|
|
multiple Configurations within facilities?
I'm trying to decide whether to support multiple configurations within my application or to just support a single global configuration specified with the OCIO env var. It's relatively easy for me to s
I'm trying to decide whether to support multiple configurations within my application or to just support a single global configuration specified with the OCIO env var. It's relatively easy for me to s
|
By
Paul Miller
·
|
|
Mari 1.4v1, now with OCIO support builtin
5 messages
Congrats to the Mari team for Shipping version 1.4v1, which features native OpenColorIO support! http://thefoundry.s3.amazonaws.com/products/mari/releases/1.4v1/Mari_1.4v1_ReleaseNotes.pdf They've eve
Congrats to the Mari team for Shipping version 1.4v1, which features native OpenColorIO support! http://thefoundry.s3.amazonaws.com/products/mari/releases/1.4v1/Mari_1.4v1_ReleaseNotes.pdf They've eve
|
By
Jeremy Selan
·
|
|
multiple Configurations within facilities?
2 messages
A single app-wide OCIO configuration is probably fine as long as you can launch multiple instances of the app and use different configurations in each one. I would not do a global preferences setting,
A single app-wide OCIO configuration is probably fine as long as you can launch multiple instances of the app and use different configurations in each one. I would not do a global preferences setting,
|
By
Brendan Bolles
·
|
|
OCIO and color pickers
Anyone have any recommendations on how to deal with color pickers and HDR viewing spaces? Right now we just have a normal non-managed picker that tends to never match the actual color picked from the
Anyone have any recommendations on how to deal with color pickers and HDR viewing spaces? Right now we just have a normal non-managed picker that tends to never match the actual color picked from the
|
By
Paul Miller
·
|
|
PackedImageDesc memory usage
I realized I'm creating and destroying a PackedImageDesc once per scanline. Rather than a simple wrapper around some image pointers this class allocates an implementation class. This got me thinking a
I realized I'm creating and destroying a PackedImageDesc once per scanline. Rather than a simple wrapper around some image pointers this class allocates an implementation class. This got me thinking a
|
By
Paul Miller
·
|
|
OCIO and color pickers
2 messages
Yah, it's generally helpful to run the color picker swatch through the display transform. The simplest solutions I'd recommend is to create an additional color processor (that you hang onto between dr
Yah, it's generally helpful to run the color picker swatch through the display transform. The simplest solutions I'd recommend is to create an additional color processor (that you hang onto between dr
|
By
Jeremy Selan
·
|
|
Silhouette now using OCIO natively
In less than a week I've converted Silhouette's entire color conversion pipeline over to OCIO. I wanted to thank Jeremy and everyone else who gave me advice. It was much easier than I anticipated!
In less than a week I've converted Silhouette's entire color conversion pipeline over to OCIO. I wanted to thank Jeremy and everyone else who gave me advice. It was much easier than I anticipated!
|
By
Paul Miller
·
|
|
PackedImageDesc memory usage
3 messages
I wouldn't be too concerned with it. My expectation is that the image processing + getProcessor calls would dwarf by many orders of magnitude the PackedImageDesc allocation time. But if you're curious
I wouldn't be too concerned with it. My expectation is that the image processing + getProcessor calls would dwarf by many orders of magnitude the PackedImageDesc allocation time. But if you're curious
|
By
Jeremy Selan
·
|
|
Accommodating per-shot grades
6 messages
Hi OCIO developers, First, apologies if this is not strictly a dev question. I have a real-world case for per-shot grade LUTs in an application that uses OCIO color management (Katana). Reading over s
Hi OCIO developers, First, apologies if this is not strictly a dev question. I have a real-world case for per-shot grade LUTs in an application that uses OCIO color management (Katana). Reading over s
|
By
Blake Sloan
·
|
|
Digest for ocio...@googlegroups.com - 5 Messages in 2 Topics
2 messages
Hi Malcolm and Jeremy, Thanks for the docs page. It is very helpful. Clearer now on how to have a single ocio config for a show. And yes, Jeremy that would be excellent if you can show me (or add to t
Hi Malcolm and Jeremy, Thanks for the docs page. It is very helpful. Clearer now on how to have a single ocio config for a show. And yes, Jeremy that would be excellent if you can show me (or add to t
|
By
Blake Sloan
·
|
|
tips/tricks for drawing color-managed color picker controls?
I'm working on a new set of color picker controls that are properly managed with OCIO. For simple pots I can just transform each color before painting with my toolkit (I'm not going through OGL for th
I'm working on a new set of color picker controls that are properly managed with OCIO. For simple pots I can just transform each color before painting with my toolkit (I'm not going through OGL for th
|
By
Paul Miller
·
|
|
Digest for ocio...@googlegroups.com - 4 Messages in 3 Topics
Thanks, Jeremy et al. As usual, once the pieces are in place, works as intended. -blake -- as seen on T.V.
Thanks, Jeremy et al. As usual, once the pieces are in place, works as intended. -blake -- as seen on T.V.
|
By
Blake Sloan
·
|
|
tips/tricks for drawing color-managed color picker controls?
5 messages
Are you doing this in qt or pyqt? -- Jeremy
Are you doing this in qt or pyqt? -- Jeremy
|
By
Jeremy Selan
·
|
|
Review: core: updated Config::sanityCheck
https://github.com/imageworks/OpenColorIO/pull/204 https://github.com/imageworks/OpenColorIO/issues/203 Config::sanityCheck will now fail when duplicate color spaces with the same name are encountered
https://github.com/imageworks/OpenColorIO/pull/204 https://github.com/imageworks/OpenColorIO/issues/203 Config::sanityCheck will now fail when duplicate color spaces with the same name are encountered
|
By
Jeremy Selan
·
|
|
Review: Virtual member refactoring and OCIOColorSpace channel swizzling bug
Review: Virtual member refactoring and OCIOColorSpace channel swizzling bug Made a bunch of the Nuke plugin members virtual. Also, fixed a bug in OCIOColorSpace where setting the "channels" knob to 'a
Review: Virtual member refactoring and OCIOColorSpace channel swizzling bug Made a bunch of the Nuke plugin members virtual. Also, fixed a bug in OCIOColorSpace where setting the "channels" knob to 'a
|
By
Sean Looper
·
|
|
Review: build option OCIO_LINK_PYGLUE. allows pyglue to skip python linking
2 messages
https://github.com/imageworks/OpenColorIO/pull/209 OCIO_LINK_PYGLUE allows pyglue to skip python linking. Default value is 'YES' (current behaviour). PyOpenColorIO.so is not useful in apps unless the
https://github.com/imageworks/OpenColorIO/pull/209 OCIO_LINK_PYGLUE allows pyglue to skip python linking. Default value is 'YES' (current behaviour). PyOpenColorIO.so is not useful in apps unless the
|
By
Jeremy Selan
·
|