Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_keyingscreen.cc
| Show All 40 Lines | |||||
| { | { | ||||
| b.add_output<decl::Color>(N_("Screen")); | b.add_output<decl::Color>(N_("Screen")); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes | ||||
| static void node_composit_init_keyingscreen(bNodeTree *UNUSED(ntree), bNode *node) | static void node_composit_init_keyingscreen(bNodeTree *UNUSED(ntree), bNode *node) | ||||
| { | { | ||||
| NodeKeyingScreenData *data = MEM_cnew<NodeKeyingScreenData>(__func__); | NodeKeyingScreenData *data = MEM_cnew<NodeKeyingScreenData>(MEM_AT); | ||||
| node->storage = data; | node->storage = data; | ||||
| } | } | ||||
| static void node_composit_buts_keyingscreen(uiLayout *layout, bContext *C, PointerRNA *ptr) | static void node_composit_buts_keyingscreen(uiLayout *layout, bContext *C, PointerRNA *ptr) | ||||
| { | { | ||||
| bNode *node = (bNode *)ptr->data; | bNode *node = (bNode *)ptr->data; | ||||
| uiTemplateID(layout, | uiTemplateID(layout, | ||||
| Show All 35 Lines | |||||