X-Git-Url: http://users.mur.at/ms/git/gitweb/?p=OpenColorIO-Configs.git;a=blobdiff_plain;f=aces_1.0.0%2Fpython%2Faces_ocio%2Fcreate_aces_colorspaces.py;h=8c0eeb43e3fcc137f501fcd9bba96d1aed71ec1b;hp=9c8f866a8eea3c1b46d62f806a01384e55b9a368;hb=616d30ea450f7d8b669649b1bb57a54d51db0a9a;hpb=0c0c9313006b5436ae6e09f68d66196b8a48743b diff --git a/aces_1.0.0/python/aces_ocio/create_aces_colorspaces.py b/aces_1.0.0/python/aces_ocio/create_aces_colorspaces.py index 9c8f866..8c0eeb4 100644 --- a/aces_1.0.0/python/aces_ocio/create_aces_colorspaces.py +++ b/aces_1.0.0/python/aces_ocio/create_aces_colorspaces.py @@ -21,7 +21,7 @@ from aces_ocio.generate_lut import ( from aces_ocio.utilities import ( ColorSpace, mat44_from_mat33, - sanitize_path, + sanitize, compact) @@ -106,7 +106,7 @@ def create_ACEScc(aces_CTL_directory, 'ACEScsc.ACES_to_ACEScg.a1.0.0.ctl')] lut = '%s_to_ACES.spi1d' % name - lut = sanitize_path(lut) + lut = sanitize(lut) generate_1d_LUT_from_CTL( os.path.join(lut_directory, lut), @@ -178,7 +178,7 @@ def create_ACESproxy(aces_CTL_directory, 'ACEScsc.ACES_to_ACEScg.a1.0.0.ctl')] lut = '%s_to_aces.spi1d' % name - lut = sanitize_path(lut) + lut = sanitize(lut) generate_1d_LUT_from_CTL( os.path.join(lut_directory, lut), @@ -446,7 +446,7 @@ def create_generic_log(aces_CTL_directory, 'ACESlib.OCIO_shaper_log2_to_lin_param.a1.0.0.ctl')] lut = '%s_to_aces.spi1d' % name - lut = sanitize_path(lut) + lut = sanitize(lut) generate_1d_LUT_from_CTL( os.path.join(lut_directory, lut), @@ -520,7 +520,7 @@ def create_ACES_LMT(lmt_name, if not os.path.exists(os.path.join(lut_directory, shaper_lut)): ctls = [shaper_to_ACES_CTL % aces_CTL_directory] - shaper_lut = sanitize_path(shaper_lut) + shaper_lut = sanitize(shaper_lut) generate_1d_LUT_from_CTL( os.path.join(lut_directory, shaper_lut), @@ -548,7 +548,7 @@ def create_ACES_LMT(lmt_name, lmt_values['transformCTL'])] lut = '%s.%s.spi3d' % (shaper_name, lmt_name) - lut = sanitize_path(lut) + lut = sanitize(lut) generate_3d_LUT_from_CTL( os.path.join(lut_directory, lut), @@ -580,7 +580,7 @@ def create_ACES_LMT(lmt_name, shaper_from_ACES_CTL % aces_CTL_directory] lut = 'Inverse.%s.%s.spi3d' % (odt_name, shaper_name) - lut = sanitize_path(lut) + lut = sanitize(lut) generate_3d_LUT_from_CTL( os.path.join(lut_directory, lut), @@ -743,7 +743,7 @@ def create_ACES_RRT_plus_ODT(odt_name, if not os.path.exists(os.path.join(lut_directory, shaper_lut)): ctls = [shaper_to_ACES_CTL % aces_CTL_directory] - shaper_lut = sanitize_path(shaper_lut) + shaper_lut = sanitize(shaper_lut) generate_1d_LUT_from_CTL( os.path.join(lut_directory, shaper_lut), @@ -788,7 +788,7 @@ def create_ACES_RRT_plus_ODT(odt_name, odt_values['transformCTL'])] lut = '%s.RRT.a1.0.0.%s.spi3d' % (shaper_name, odt_name) - lut = sanitize_path(lut) + lut = sanitize(lut) generate_3d_LUT_from_CTL( os.path.join(lut_directory, lut), @@ -837,7 +837,7 @@ def create_ACES_RRT_plus_ODT(odt_name, shaper_from_ACES_CTL % aces_CTL_directory] lut = 'InvRRT.a1.0.0.%s.%s.spi3d' % (odt_name, shaper_name) - lut = sanitize_path(lut) + lut = sanitize(lut) generate_3d_LUT_from_CTL( os.path.join(lut_directory, lut),