Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/shader/nodes/node_shader_gamma.cc
| Show First 20 Lines • Show All 62 Lines • ▼ Show 20 Lines | |||||
| } // namespace blender::nodes::node_shader_gamma_cc | } // 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; | 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); | ||||
| node_type_socket_templates(&ntype, file_ns::sh_node_gamma_in, file_ns::sh_node_gamma_out); | node_type_socket_templates(&ntype, file_ns::sh_node_gamma_in, file_ns::sh_node_gamma_out); | ||||
| node_type_exec(&ntype, nullptr, nullptr, file_ns::node_shader_exec_gamma); | node_type_exec(&ntype, nullptr, nullptr, file_ns::node_shader_exec_gamma); | ||||
| node_type_gpu(&ntype, file_ns::node_shader_gpu_gamma); | node_type_gpu(&ntype, file_ns::node_shader_gpu_gamma); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||