removed last of the NodeOutput dependencies

Since all Nodes have an output that provides all output values now, we now
never need to add an output from a Node derivative. These changes remove the
last of them and disable the ability to add more outputs from a derivative.
This commit is contained in:
itsmattkc
2019-12-06 04:21:55 +11:00
parent 694f424627
commit c32a1c8be2
18 changed files with 83 additions and 240 deletions
+3 -3
View File
@@ -22,9 +22,9 @@
ClipBlock::ClipBlock()
{
texture_input_ = new NodeInput("tex_in");
texture_input_->set_data_type(NodeInput::kTexture);
AddParameter(texture_input_);
texture_input_ = new NodeInput("buffer_in");
texture_input_->set_data_type(NodeInput::kBuffer);
AddInput(texture_input_);
}
Node *ClipBlock::copy() const