Skip to content

Commit 1d2f83b

Browse files
authored
PR: Implement support for "OpenColorIO" profile version. (#70)
* Update various docstrings. Signed-off-by: Thomas Mansencal <[email protected]> * Shorten various class attribute names. Signed-off-by: Thomas Mansencal <[email protected]> * Implement support for "OpenColorIO" profile version. Signed-off-by: Thomas Mansencal <[email protected]> Signed-off-by: Thomas Mansencal <[email protected]>
1 parent f061eee commit 1d2f83b

File tree

14 files changed

+557
-481
lines changed

14 files changed

+557
-481
lines changed

docs/opencolorio_config_aces.config.rst

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
Generation
66
==========
77

8+
Profile Version
9+
---------------
10+
11+
``opencolorio_config_aces``
12+
13+
.. currentmodule:: opencolorio_config_aces
14+
15+
.. autosummary::
16+
:toctree: generated/
17+
18+
ProfileVersion
19+
PROFILE_VERSION_DEFAULT
20+
SUPPORTED_PROFILE_VERSIONS
21+
822
Config Generation Common Objects
923
--------------------------------
1024

@@ -16,7 +30,6 @@ Config Generation Common Objects
1630
:toctree: generated/
1731

1832
ConfigData
19-
VersionData
2033
deserialize_config_data
2134
generate_config
2235
serialize_config_data
@@ -30,6 +43,7 @@ Factories
3043
.. autosummary::
3144
:toctree: generated/
3245

46+
BUILTIN_TRANSFORMS
3347
TRANSFORM_FACTORIES
3448
colorspace_factory
3549
group_transform_factory

opencolorio_config_aces/__init__.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@
3131
view_transform_factory,
3232
)
3333
from .config import (
34+
BUILTIN_TRANSFORMS,
3435
ConfigData,
35-
VersionData,
36+
PROFILE_VERSION_DEFAULT,
37+
ProfileVersion,
38+
SUPPORTED_PROFILE_VERSIONS,
3639
deserialize_config_data,
3740
generate_config,
3841
serialize_config_data,
@@ -85,8 +88,11 @@
8588
"view_transform_factory",
8689
]
8790
__all__ += [
91+
"BUILTIN_TRANSFORMS",
8892
"ConfigData",
89-
"VersionData",
93+
"PROFILE_VERSION_DEFAULT",
94+
"ProfileVersion",
95+
"SUPPORTED_PROFILE_VERSIONS",
9096
"deserialize_config_data",
9197
"generate_config",
9298
"serialize_config_data",

0 commit comments

Comments
 (0)