Home
last modified time | relevance | path

Searched refs:last_properties (Results 1 – 3 of 3) sorted by relevance

/dports/graphics/blender/blender-2.91.0/source/blender/windowmanager/intern/
H A Dwm_operator_type.c157 if (ot->last_properties) { in WM_operatortype_remove_ptr()
158 IDP_FreeProperty(ot->last_properties); in WM_operatortype_remove_ptr()
194 if (ot->last_properties) { in operatortype_ghash_free_cb()
195 IDP_FreeProperty(ot->last_properties); in operatortype_ghash_free_cb()
278 if (ot->last_properties) { in WM_operatortype_last_properties_clear_all()
279 IDP_FreeProperty(ot->last_properties); in WM_operatortype_last_properties_clear_all()
280 ot->last_properties = NULL; in WM_operatortype_last_properties_clear_all()
H A Dwm_operators.c767 if (op->type->last_properties) { in WM_operator_last_properties_init()
781 if (op->type->last_properties) { in WM_operator_last_properties_store()
782 IDP_FreeProperty(op->type->last_properties); in WM_operator_last_properties_store()
783 op->type->last_properties = NULL; in WM_operator_last_properties_store()
788 op->type->last_properties = IDP_CopyProperty(op->properties); in WM_operator_last_properties_store()
794 if (op->type->last_properties == NULL) { in WM_operator_last_properties_store()
795 op->type->last_properties = IDP_New( in WM_operator_last_properties_store()
800 IDP_ReplaceInGroup(op->type->last_properties, idp_macro); in WM_operator_last_properties_store()
805 return (op->type->last_properties != NULL); in WM_operator_last_properties_store()
1197 if (ot->last_properties == NULL) { in WM_operator_last_properties_ensure_idprops()
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/windowmanager/
H A DWM_types.h764 struct IDProperty *last_properties; member