Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/shader/nodes/node_shader_gamma.cc
| 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. | ||||
| */ | */ | ||||
| #include "node_shader_util.hh" | #include "node_shader_util.hh" | ||||
| /* **************** Gamma Tools ******************** */ | /* **************** Gamma Tools ******************** */ | ||||
| namespace blender::nodes::node_shader_gamma_cc { | |||||
| static bNodeSocketTemplate sh_node_gamma_in[] = { | static bNodeSocketTemplate sh_node_gamma_in[] = { | ||||
| {SOCK_RGBA, N_("Color"), 1.0f, 1.0f, 1.0f, 1.0f}, | {SOCK_RGBA, N_("Color"), 1.0f, 1.0f, 1.0f, 1.0f}, | ||||
| {SOCK_FLOAT, N_("Gamma"), 1.0f, 0.0f, 0.0f, 0.0f, 0.001f, 10.0f, PROP_UNSIGNED}, | {SOCK_FLOAT, N_("Gamma"), 1.0f, 0.0f, 0.0f, 0.0f, 0.001f, 10.0f, PROP_UNSIGNED}, | ||||
| {-1, ""}, | {-1, ""}, | ||||
| }; | }; | ||||
| static bNodeSocketTemplate sh_node_gamma_out[] = { | static bNodeSocketTemplate sh_node_gamma_out[] = { | ||||
| {SOCK_RGBA, N_("Color")}, | {SOCK_RGBA, N_("Color")}, | ||||
| Show All 21 Lines | static int node_shader_gpu_gamma(GPUMaterial *mat, | ||||
| bNode *node, | bNode *node, | ||||
| bNodeExecData *UNUSED(execdata), | bNodeExecData *UNUSED(execdata), | ||||
| GPUNodeStack *in, | GPUNodeStack *in, | ||||
| GPUNodeStack *out) | GPUNodeStack *out) | ||||
| { | { | ||||
| return GPU_stack_link(mat, node, "node_gamma", in, out); | return GPU_stack_link(mat, node, "node_gamma", in, out); | ||||
| } | } | ||||
| } // namespace blender::nodes::node_shader_gamma_cc | |||||
| void register_node_type_sh_gamma() | void register_node_type_sh_gamma() | ||||
| { | { | ||||
| namespace file_ns = blender::nodes::node_shader_gamma_cc; | |||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| sh_node_type_base(&ntype, SH_NODE_GAMMA, "Gamma", NODE_CLASS_OP_COLOR, 0); | sh_node_type_base(&ntype, SH_NODE_GAMMA, "Gamma", NODE_CLASS_OP_COLOR, 0); | ||||
| node_type_socket_templates(&ntype, sh_node_gamma_in, sh_node_gamma_out); | node_type_socket_templates(&ntype, file_ns::sh_node_gamma_in, file_ns::sh_node_gamma_out); | ||||
| node_type_init(&ntype, nullptr); | node_type_init(&ntype, nullptr); | ||||
| node_type_storage(&ntype, "", nullptr, nullptr); | node_type_storage(&ntype, "", nullptr, nullptr); | ||||
| node_type_exec(&ntype, nullptr, nullptr, node_shader_exec_gamma); | node_type_exec(&ntype, nullptr, nullptr, file_ns::node_shader_exec_gamma); | ||||
| node_type_gpu(&ntype, node_shader_gpu_gamma); | node_type_gpu(&ntype, file_ns::node_shader_gpu_gamma); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||