Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_antialiasing.cc
| Show All 24 Lines | |||||
| #include "UI_interface.h" | #include "UI_interface.h" | ||||
| #include "UI_resources.h" | #include "UI_resources.h" | ||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| /* **************** Anti-Aliasing (SMAA 1x) ******************** */ | /* **************** Anti-Aliasing (SMAA 1x) ******************** */ | ||||
| namespace blender::nodes { | namespace blender::nodes::node_composite_antialiasing_cc { | ||||
| static void cmp_node_antialiasing_declare(NodeDeclarationBuilder &b) | static void cmp_node_antialiasing_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Color>(N_("Image")).default_value({1.0f, 1.0f, 1.0f, 1.0f}); | b.add_input<decl::Color>(N_("Image")).default_value({1.0f, 1.0f, 1.0f, 1.0f}); | ||||
| b.add_output<decl::Color>(N_("Image")); | b.add_output<decl::Color>(N_("Image")); | ||||
| } | } | ||||
| } // namespace blender::nodes | |||||
| static void node_composit_init_antialiasing(bNodeTree *UNUSED(ntree), bNode *node) | static void node_composit_init_antialiasing(bNodeTree *UNUSED(ntree), bNode *node) | ||||
| { | { | ||||
| NodeAntiAliasingData *data = MEM_cnew<NodeAntiAliasingData>(__func__); | NodeAntiAliasingData *data = MEM_cnew<NodeAntiAliasingData>(__func__); | ||||
| data->threshold = CMP_DEFAULT_SMAA_THRESHOLD; | data->threshold = CMP_DEFAULT_SMAA_THRESHOLD; | ||||
| data->contrast_limit = CMP_DEFAULT_SMAA_CONTRAST_LIMIT; | data->contrast_limit = CMP_DEFAULT_SMAA_CONTRAST_LIMIT; | ||||
| data->corner_rounding = CMP_DEFAULT_SMAA_CORNER_ROUNDING; | data->corner_rounding = CMP_DEFAULT_SMAA_CORNER_ROUNDING; | ||||
| node->storage = data; | node->storage = data; | ||||
| } | } | ||||
| static void node_composit_buts_antialiasing(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr) | static void node_composit_buts_antialiasing(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr) | ||||
| { | { | ||||
| uiLayout *col; | uiLayout *col; | ||||
| col = uiLayoutColumn(layout, false); | col = uiLayoutColumn(layout, false); | ||||
| uiItemR(col, ptr, "threshold", 0, nullptr, ICON_NONE); | uiItemR(col, ptr, "threshold", 0, nullptr, ICON_NONE); | ||||
| uiItemR(col, ptr, "contrast_limit", 0, nullptr, ICON_NONE); | uiItemR(col, ptr, "contrast_limit", 0, nullptr, ICON_NONE); | ||||
| uiItemR(col, ptr, "corner_rounding", 0, nullptr, ICON_NONE); | uiItemR(col, ptr, "corner_rounding", 0, nullptr, ICON_NONE); | ||||
| } | } | ||||
| } // namespace blender::nodes::node_composite_antialiasing_cc | |||||
| void register_node_type_cmp_antialiasing() | void register_node_type_cmp_antialiasing() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_composite_antialiasing_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base( | cmp_node_type_base( | ||||
| &ntype, CMP_NODE_ANTIALIASING, "Anti-Aliasing", NODE_CLASS_OP_FILTER, NODE_PREVIEW); | &ntype, CMP_NODE_ANTIALIASING, "Anti-Aliasing", NODE_CLASS_OP_FILTER, NODE_PREVIEW); | ||||
| ntype.declare = blender::nodes::cmp_node_antialiasing_declare; | ntype.declare = file_ns::cmp_node_antialiasing_declare; | ||||
| ntype.draw_buttons = node_composit_buts_antialiasing; | ntype.draw_buttons = file_ns::node_composit_buts_antialiasing; | ||||
| node_type_size(&ntype, 170, 140, 200); | node_type_size(&ntype, 170, 140, 200); | ||||
| node_type_init(&ntype, node_composit_init_antialiasing); | node_type_init(&ntype, file_ns::node_composit_init_antialiasing); | ||||
| node_type_storage( | node_type_storage( | ||||
| &ntype, "NodeAntiAliasingData", node_free_standard_storage, node_copy_standard_storage); | &ntype, "NodeAntiAliasingData", node_free_standard_storage, node_copy_standard_storage); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||