Revert "Fix T99259: Python API: ViewLayer.aovs.remove isn't available"

This reverts commit ae7909010f.
This commit is contained in:
Jeroen Bakker 2022-08-22 08:40:36 +02:00
parent ae7909010f
commit 0aeae0d0b9
Notes: blender-bot 2023-02-14 06:05:22 +01:00
Referenced by issue #99259, Python API: ViewLayer.aovs.remove isn't available
2 changed files with 1 additions and 12 deletions

View File

@ -2432,12 +2432,8 @@ struct ViewLayerAOV *BKE_view_layer_add_aov(struct ViewLayer *view_layer)
void BKE_view_layer_remove_aov(ViewLayer *view_layer, ViewLayerAOV *aov)
{
if (BLI_findindex(&view_layer->aovs, aov) == -1) {
return;
}
BLI_assert(BLI_findindex(&view_layer->aovs, aov) != -1);
BLI_assert(aov != NULL);
if (view_layer->active_aov == aov) {
if (aov->next) {
viewlayer_aov_active_set(view_layer, aov->next);

View File

@ -4256,13 +4256,6 @@ static void rna_def_view_layer_aovs(BlenderRNA *brna, PropertyRNA *cprop)
func = RNA_def_function(srna, "add", "BKE_view_layer_add_aov");
parm = RNA_def_pointer(func, "aov", "AOV", "", "Newly created AOV");
RNA_def_function_return(func, parm);
func = RNA_def_function(srna, "remove", "BKE_view_layer_remove_aov");
RNA_def_function_ui_description(func, "Remove a AOV");
RNA_def_function_flag(func, FUNC_USE_MAIN | FUNC_USE_REPORTS | FUNC_USE_SELF_ID);
parm = RNA_def_pointer(func, "aov", "AOV", "", "AOVs to remove");
RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED | PARM_RNAPTR);
RNA_def_parameter_clear_flags(parm, PROP_THICK_WRAP, 0);
}
static void rna_def_view_layer_aov(BlenderRNA *brna)