Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_antialiasing.cc
| Show All 17 Lines | |||||
| * | * | ||||
| * The Original Code is: all of this file. | * The Original Code is: all of this file. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "UI_interface.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 { | ||||
| static void cmp_node_antialiasing_declare(NodeDeclarationBuilder &b) | static void cmp_node_antialiasing_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| Show All 10 Lines | static void node_composit_init_antialiasing(bNodeTree *UNUSED(ntree), bNode *node) | ||||
| 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) | |||||
| { | |||||
| uiLayout *col; | |||||
| col = uiLayoutColumn(layout, false); | |||||
| uiItemR(col, ptr, "threshold", 0, nullptr, ICON_NONE); | |||||
| uiItemR(col, ptr, "contrast_limit", 0, nullptr, ICON_NONE); | |||||
| uiItemR(col, ptr, "corner_rounding", 0, nullptr, ICON_NONE); | |||||
| } | |||||
| void register_node_type_cmp_antialiasing() | void register_node_type_cmp_antialiasing() | ||||
| { | { | ||||
| 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 = blender::nodes::cmp_node_antialiasing_declare; | ||||
| ntype.draw_buttons = 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, 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); | ||||
| } | } | ||||