Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_sepcombHSVA.cc
| Show All 23 Lines | |||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| /* **************** SEPARATE HSVA ******************** */ | /* **************** SEPARATE HSVA ******************** */ | ||||
| namespace blender::nodes { | namespace blender::nodes { | ||||
| static void cmp_node_sephsva_declare(NodeDeclarationBuilder &b) | static void cmp_node_sephsva_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Color>("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::Float>("H"); | b.add_output<decl::Float>(N_("H")); | ||||
| b.add_output<decl::Float>("S"); | b.add_output<decl::Float>(N_("S")); | ||||
| b.add_output<decl::Float>("V"); | b.add_output<decl::Float>(N_("V")); | ||||
| b.add_output<decl::Float>("A"); | b.add_output<decl::Float>(N_("A")); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes | ||||
| void register_node_type_cmp_sephsva(void) | void register_node_type_cmp_sephsva(void) | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_SEPHSVA, "Separate HSVA", NODE_CLASS_CONVERTER, 0); | cmp_node_type_base(&ntype, CMP_NODE_SEPHSVA, "Separate HSVA", NODE_CLASS_CONVERTER, 0); | ||||
| ntype.declare = blender::nodes::cmp_node_sephsva_declare; | ntype.declare = blender::nodes::cmp_node_sephsva_declare; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||
| /* **************** COMBINE HSVA ******************** */ | /* **************** COMBINE HSVA ******************** */ | ||||
| namespace blender::nodes { | namespace blender::nodes { | ||||
| static void cmp_node_combhsva_declare(NodeDeclarationBuilder &b) | static void cmp_node_combhsva_declare(NodeDeclarationBuilder &b) | ||||
| { | { | ||||
| b.add_input<decl::Float>("H").min(0.0f).max(1.0f); | b.add_input<decl::Float>(N_("H")).min(0.0f).max(1.0f); | ||||
| b.add_input<decl::Float>("S").min(0.0f).max(1.0f); | b.add_input<decl::Float>(N_("S")).min(0.0f).max(1.0f); | ||||
| b.add_input<decl::Float>("V").min(0.0f).max(1.0f); | b.add_input<decl::Float>(N_("V")).min(0.0f).max(1.0f); | ||||
| b.add_input<decl::Float>("A").default_value(1.0f).min(0.0f).max(1.0f); | b.add_input<decl::Float>(N_("A")).default_value(1.0f).min(0.0f).max(1.0f); | ||||
| b.add_output<decl::Color>("Image"); | b.add_output<decl::Color>(N_("Image")); | ||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes | ||||
| void register_node_type_cmp_combhsva(void) | void register_node_type_cmp_combhsva(void) | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_COMBHSVA, "Combine HSVA", NODE_CLASS_CONVERTER, 0); | cmp_node_type_base(&ntype, CMP_NODE_COMBHSVA, "Combine HSVA", NODE_CLASS_CONVERTER, 0); | ||||
| ntype.declare = blender::nodes::cmp_node_combhsva_declare; | ntype.declare = blender::nodes::cmp_node_combhsva_declare; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||