Skip to content

Commit d5c4b36

Browse files
committed
Update "__all__" attributes.
1 parent 805c53a commit d5c4b36

4 files changed

Lines changed: 21 additions & 4 deletions

File tree

aces_1.0.0/python/aces_ocio/aces_config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@
4242
'set_config_default_roles',
4343
'write_config',
4444
'generate_OCIO_transform',
45-
'add_colorspace_alias',
45+
'add_colorspace_aliases',
46+
'add_look',
47+
'integrate_looks_into_views',
4648
'create_config',
4749
'generate_LUTs',
4850
'generate_baked_LUTs',

aces_1.0.0/python/aces_ocio/colorspaces/aces.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,20 @@
3434
__status__ = 'Production'
3535

3636
__all__ = ['ACES_AP1_TO_AP0',
37+
'ACES_AP0_TO_AP1',
3738
'ACES_AP0_TO_XYZ',
39+
'ACES_XYZ_TO_AP0',
3840
'create_ACES',
3941
'create_ACEScc',
4042
'create_ACESproxy',
4143
'create_ACEScg',
4244
'create_ADX',
43-
'create_ACES_LMT',
44-
'create_ACES_RRT_plus_ODT',
4545
'create_generic_log',
46+
'create_Dolby_PQ',
47+
'create_Dolby_PQ_scaled',
48+
'create_ACES_LMT',
4649
'create_LMTs',
50+
'create_ACES_RRT_plus_ODT',
4751
'create_ODTs',
4852
'get_transform_info',
4953
'get_ODTs_info',

aces_1.0.0/python/aces_ocio/colorspaces/general.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,15 @@
2424
__status__ = 'Production'
2525

2626
__all__ = ['create_matrix_colorspace',
27-
'create_colorspaces']
27+
'create_transfer_colorspace',
28+
'create_matrix_plus_transfer_colorspace',
29+
'transfer_function_sRGB_to_linear',
30+
'transfer_function_Rec709_to_linear',
31+
'transfer_function_Rec2020_10bit_to_linear',
32+
'transfer_function_Rec2020_12bit_to_linear',
33+
'transfer_function_Rec1886_to_linear',
34+
'create_colorspaces',
35+
'create_raw']
2836

2937

3038
# -------------------------------------------------------------------------

aces_1.0.0/python/aces_ocio/generate_lut.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424

2525
__all__ = ['generate_1d_LUT_image',
2626
'write_SPI_1d',
27+
'write_CSP_1d',
28+
'write_CTL_1d',
29+
'write_1d',
2730
'generate_1d_LUT_from_image',
2831
'generate_3d_LUT_image',
2932
'generate_3d_LUT_from_image',

0 commit comments

Comments
 (0)