Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_gamma.cc
| Show All 23 Lines | |||||
| #include "node_composite_util.hh" | #include "node_composite_util.hh" | ||||
| /* **************** Gamma Tools ******************** */ | /* **************** Gamma Tools ******************** */ | ||||
| namespace blender::nodes { | namespace blender::nodes { | ||||
| static void cmp_node_gamma_declare(NodeDeclarationBuilder &b) | static void cmp_node_gamma_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_input<decl::Float>("Gamma").default_value(1.0f).min(0.001f).max(10.0f).subtype( | b.add_input<decl::Float>(N_("Gamma")) | ||||
| PROP_UNSIGNED); | .default_value(1.0f) | ||||
| b.add_output<decl::Color>("Image"); | .min(0.001f) | ||||
| .max(10.0f) | |||||
| .subtype(PROP_UNSIGNED); | |||||
| b.add_output<decl::Color>(N_("Image")); | |||||
| } | } | ||||
| } // namespace blender::nodes | } // namespace blender::nodes | ||||
| void register_node_type_cmp_gamma(void) | void register_node_type_cmp_gamma(void) | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_GAMMA, "Gamma", NODE_CLASS_OP_COLOR, 0); | cmp_node_type_base(&ntype, CMP_NODE_GAMMA, "Gamma", NODE_CLASS_OP_COLOR, 0); | ||||
| ntype.declare = blender::nodes::cmp_node_gamma_declare; | ntype.declare = blender::nodes::cmp_node_gamma_declare; | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||