Update "__all__" attributes.
authorThomas Mansencal <thomas.mansencal@gmail.com>
Fri, 31 Jul 2015 08:49:44 +0000 (20:49 +1200)
committerThomas Mansencal <thomas.mansencal@gmail.com>
Fri, 31 Jul 2015 08:49:44 +0000 (20:49 +1200)
aces_1.0.0/python/aces_ocio/aces_config.py
aces_1.0.0/python/aces_ocio/colorspaces/aces.py
aces_1.0.0/python/aces_ocio/colorspaces/general.py
aces_1.0.0/python/aces_ocio/generate_lut.py

index 9eba70c..380cdfb 100755 (executable)
@@ -42,7 +42,9 @@ __all__ = ['ACES_OCIO_CTL_DIRECTORY_ENVIRON',
            'set_config_default_roles',
            'write_config',
            'generate_OCIO_transform',
-           'add_colorspace_alias',
+           'add_colorspace_aliases',
+           'add_look',
+           'integrate_looks_into_views',
            'create_config',
            'generate_LUTs',
            'generate_baked_LUTs',
index 61f05c0..cd82d13 100644 (file)
@@ -34,16 +34,20 @@ __email__ = 'aces@oscars.org'
 __status__ = 'Production'
 
 __all__ = ['ACES_AP1_TO_AP0',
+           'ACES_AP0_TO_AP1',
            'ACES_AP0_TO_XYZ',
+           'ACES_XYZ_TO_AP0',
            'create_ACES',
            'create_ACEScc',
            'create_ACESproxy',
            'create_ACEScg',
            'create_ADX',
-           'create_ACES_LMT',
-           'create_ACES_RRT_plus_ODT',
            'create_generic_log',
+           'create_Dolby_PQ',
+           'create_Dolby_PQ_scaled',
+           'create_ACES_LMT',
            'create_LMTs',
+           'create_ACES_RRT_plus_ODT',
            'create_ODTs',
            'get_transform_info',
            'get_ODTs_info',
index d45699d..cb935f7 100644 (file)
@@ -24,7 +24,15 @@ __email__ = 'aces@oscars.org'
 __status__ = 'Production'
 
 __all__ = ['create_matrix_colorspace',
-           'create_colorspaces']
+           'create_transfer_colorspace',
+           'create_matrix_plus_transfer_colorspace',
+           'transfer_function_sRGB_to_linear',
+           'transfer_function_Rec709_to_linear',
+           'transfer_function_Rec2020_10bit_to_linear',
+           'transfer_function_Rec2020_12bit_to_linear',
+           'transfer_function_Rec1886_to_linear',
+           'create_colorspaces',
+           'create_raw']
 
 
 # -------------------------------------------------------------------------
index f9fc699..e83a7c5 100755 (executable)
@@ -24,6 +24,9 @@ __status__ = 'Production'
 
 __all__ = ['generate_1d_LUT_image',
            'write_SPI_1d',
+           'write_CSP_1d',
+           'write_CTL_1d',
+           'write_1d',
            'generate_1d_LUT_from_image',
            'generate_3d_LUT_image',
            'generate_3d_LUT_from_image',