Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_gamma.cc
| Show All 34 Lines | b.add_input<decl::Float>(N_("Gamma")) | ||||
| .min(0.001f) | .min(0.001f) | ||||
| .max(10.0f) | .max(10.0f) | ||||
| .subtype(PROP_UNSIGNED); | .subtype(PROP_UNSIGNED); | ||||
| b.add_output<decl::Color>(N_("Image")); | 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() | ||||
| { | { | ||||
| 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); | ||||
| } | } | ||||