From d782b00da43475cc8b24de6cb2d7d9b766cf0c94 Mon Sep 17 00:00:00 2001 From: Jonah Friedman Date: Wed, 26 Sep 2018 13:12:29 -0400 Subject: [PATCH] renamed "create_AOV_array" to "setup_new_outputs" --- cryptomatte/cryptomatte.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cryptomatte/cryptomatte.h b/cryptomatte/cryptomatte.h index 0a1ad33..e3c717b 100644 --- a/cryptomatte/cryptomatte.h +++ b/cryptomatte/cryptomatte.h @@ -1071,7 +1071,7 @@ struct CryptomatteData { } if (crypto_aovs && check_driver(driver)) { - create_AOV_array(t_output, crypto_aovs, outputs_new); + setup_new_outputs(t_output, crypto_aovs, outputs_new); if (AiNodeGetBool(driver, "half_precision")) { AiNodeSetBool(driver, "half_precision", false); @@ -1113,7 +1113,7 @@ struct CryptomatteData { build_user_metadata(tmp_uc_drivers); } - void create_AOV_array(TokenizedOutput& t_output, AtArray* crypto_aovs, + void setup_new_outputs(TokenizedOutput& t_output, AtArray* crypto_aovs, std::vector& new_outputs) const { // Populates crypto_aovs and new_outputs AtNode* orig_filter = AiNodeLookUpByName(t_output.filter_tok.c_str()); @@ -1211,6 +1211,7 @@ struct CryptomatteData { AiNodeSetLocalData(manifest_driver, this); return manifest_driver; } + /////////////////////////////////////////////// // Manifests and metadata ///////////////////////////////////////////////