Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_valToRgb.cc
- This file was moved from source/blender/nodes/composite/nodes/node_composite_valToRgb.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" | ||||
| /* **************** VALTORGB ******************** */ | /* **************** VALTORGB ******************** */ | ||||
| static bNodeSocketTemplate cmp_node_valtorgb_in[] = { | static bNodeSocketTemplate cmp_node_valtorgb_in[] = { | ||||
| {SOCK_FLOAT, N_("Fac"), 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, PROP_FACTOR}, | {SOCK_FLOAT, N_("Fac"), 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, PROP_FACTOR}, | ||||
| {-1, ""}, | {-1, ""}, | ||||
| }; | }; | ||||
| static bNodeSocketTemplate cmp_node_valtorgb_out[] = { | static bNodeSocketTemplate cmp_node_valtorgb_out[] = { | ||||
| {SOCK_RGBA, N_("Image")}, | {SOCK_RGBA, N_("Image")}, | ||||
| ▲ Show 20 Lines • Show All 42 Lines • Show Last 20 Lines | |||||