Differential D12689 Diff 42665 source/blender/nodes/composite/nodes/node_composite_colorcorrection.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_colorcorrection.cc
- This file was moved from source/blender/nodes/composite/nodes/node_composite_colorcorrection.c.
| Show All 15 Lines | |||||
| * The Original Code is Copyright (C) 2006 Blender Foundation. | * The Original Code is Copyright (C) 2006 Blender Foundation. | ||||
| * All rights reserved. | * All rights reserved. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "node_composite_util.h" | #include "node_composite_util.hh" | ||||
| /* ******************* Color Balance ********************************* */ | /* ******************* Color Correction ********************************* */ | ||||
| static bNodeSocketTemplate cmp_node_colorcorrection_in[] = { | |||||
| {SOCK_RGBA, N_("Image"), 1.0f, 1.0f, 1.0f, 1.0f}, | namespace blender::nodes { | ||||
| {SOCK_FLOAT, N_("Mask"), 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, PROP_NONE}, | |||||
| {-1, ""}, | static void cmp_node_colorcorrection_declare(NodeDeclarationBuilder &b) | ||||
| }; | { | ||||
| b.add_input<decl::Color>("Image").default_value({1.0f, 1.0f, 1.0f, 1.0f}); | |||||
| static bNodeSocketTemplate cmp_node_colorcorrection_out[] = { | b.add_input<decl::Float>("Mask").default_value(1.0f).min(0.0f).max(1.0f); | ||||
| {SOCK_RGBA, N_("Image")}, | b.add_output<decl::Color>("Image"); | ||||
| {-1, ""}, | } | ||||
| }; | |||||
| } // namespace blender::nodes | |||||
| static void node_composit_init_colorcorrection(bNodeTree *UNUSED(ntree), bNode *node) | static void node_composit_init_colorcorrection(bNodeTree *UNUSED(ntree), bNode *node) | ||||
| { | { | ||||
| NodeColorCorrection *n = node->storage = MEM_callocN(sizeof(NodeColorCorrection), | NodeColorCorrection *n = (NodeColorCorrection *)MEM_callocN(sizeof(NodeColorCorrection), | ||||
| "node colorcorrection"); | "node colorcorrection"); | ||||
| n->startmidtones = 0.2f; | n->startmidtones = 0.2f; | ||||
| n->endmidtones = 0.7f; | n->endmidtones = 0.7f; | ||||
| n->master.contrast = 1.0f; | n->master.contrast = 1.0f; | ||||
| n->master.gain = 1.0f; | n->master.gain = 1.0f; | ||||
| n->master.gamma = 1.0f; | n->master.gamma = 1.0f; | ||||
| n->master.lift = 0.0f; | n->master.lift = 0.0f; | ||||
| n->master.saturation = 1.0f; | n->master.saturation = 1.0f; | ||||
| n->midtones.contrast = 1.0f; | n->midtones.contrast = 1.0f; | ||||
| n->midtones.gain = 1.0f; | n->midtones.gain = 1.0f; | ||||
| n->midtones.gamma = 1.0f; | n->midtones.gamma = 1.0f; | ||||
| n->midtones.lift = 0.0f; | n->midtones.lift = 0.0f; | ||||
| n->midtones.saturation = 1.0f; | n->midtones.saturation = 1.0f; | ||||
| n->shadows.contrast = 1.0f; | n->shadows.contrast = 1.0f; | ||||
| n->shadows.gain = 1.0f; | n->shadows.gain = 1.0f; | ||||
| n->shadows.gamma = 1.0f; | n->shadows.gamma = 1.0f; | ||||
| n->shadows.lift = 0.0f; | n->shadows.lift = 0.0f; | ||||
| n->shadows.saturation = 1.0f; | n->shadows.saturation = 1.0f; | ||||
| n->highlights.contrast = 1.0f; | n->highlights.contrast = 1.0f; | ||||
| n->highlights.gain = 1.0f; | n->highlights.gain = 1.0f; | ||||
| n->highlights.gamma = 1.0f; | n->highlights.gamma = 1.0f; | ||||
| n->highlights.lift = 0.0f; | n->highlights.lift = 0.0f; | ||||
| n->highlights.saturation = 1.0f; | n->highlights.saturation = 1.0f; | ||||
| node->custom1 = 7; // red + green + blue enabled | node->custom1 = 7; // red + green + blue enabled | ||||
| node->storage = n; | |||||
| } | } | ||||
| void register_node_type_cmp_colorcorrection(void) | void register_node_type_cmp_colorcorrection(void) | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_COLORCORRECTION, "Color Correction", NODE_CLASS_OP_COLOR, 0); | cmp_node_type_base(&ntype, CMP_NODE_COLORCORRECTION, "Color Correction", NODE_CLASS_OP_COLOR, 0); | ||||
| node_type_socket_templates(&ntype, cmp_node_colorcorrection_in, cmp_node_colorcorrection_out); | ntype.declare = blender::nodes::cmp_node_colorcorrection_declare; | ||||
| node_type_size(&ntype, 400, 200, 600); | node_type_size(&ntype, 400, 200, 600); | ||||
| node_type_init(&ntype, node_composit_init_colorcorrection); | node_type_init(&ntype, node_composit_init_colorcorrection); | ||||
| node_type_storage( | node_type_storage( | ||||
| &ntype, "NodeColorCorrection", node_free_standard_storage, node_copy_standard_storage); | &ntype, "NodeColorCorrection", node_free_standard_storage, node_copy_standard_storage); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||