Remove Z Buffer from ImBuf #109687

Merged
Sergey Sharybin merged 4 commits from Sergey/blender:imbuf_z_buffer into main 2023-07-04 17:03:10 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 4922887e9d - Show all commits

View File

@ -227,7 +227,7 @@ void ImageNode::convert_to_operations(NodeConverter &converter,
}
else {
/* happens when unlinking image datablock from multilayer node */
for (int i = 3; i < number_of_outputs; i++) {
for (int i = 2; i < number_of_outputs; i++) {

Change 3 to 2.

Change 3 to 2.
NodeOutput *output = this->get_output_socket(i);
NodeOperation *operation = nullptr;
switch (output->get_data_type()) {