AcademySoftwareFoundation / OpenColorIO

A color management framework for visual effects and animation.
https://opencolorio.org
BSD 3-Clause "New" or "Revised" License
1.76k stars 434 forks source link

Document the available built-in transforms #1866

Open doug-walker opened 11 months ago

doug-walker commented 11 months ago

OCIO now makes available to config authors a set of transforms that are built into OCIO itself. At each release, new transforms tend to be added. The current list may be obtained via this bit of Python code:

for style in ocio.BuiltinTransformRegistry():
    print style

However, it would be nice to have the list in the documentation.