Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_sepcombYUVA.cc
- This file was moved from source/blender/nodes/composite/nodes/node_composite_sepcombYUVA.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" | ||||
| /* **************** SEPARATE YUVA ******************** */ | /* **************** SEPARATE YUVA ******************** */ | ||||
| static bNodeSocketTemplate cmp_node_sepyuva_in[] = { | static bNodeSocketTemplate cmp_node_sepyuva_in[] = { | ||||
| {SOCK_RGBA, N_("Image"), 1.0f, 1.0f, 1.0f, 1.0f}, {-1, ""}}; | {SOCK_RGBA, N_("Image"), 1.0f, 1.0f, 1.0f, 1.0f}, {-1, ""}}; | ||||
| static bNodeSocketTemplate cmp_node_sepyuva_out[] = { | static bNodeSocketTemplate cmp_node_sepyuva_out[] = { | ||||
| {SOCK_FLOAT, N_("Y")}, | {SOCK_FLOAT, N_("Y")}, | ||||
| {SOCK_FLOAT, N_("U")}, | {SOCK_FLOAT, N_("U")}, | ||||
| {SOCK_FLOAT, N_("V")}, | {SOCK_FLOAT, N_("V")}, | ||||
| Show All 36 Lines | |||||