Welcome to mirror list, hosted at ThFree Co, Russian Federation.

compute_contexts.cc « intern « blenkernel « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 026706d363e92445537ae5a99b2f630b19f9e0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include "BKE_compute_contexts.hh"

namespace blender::bke {

ModifierComputeContext::ModifierComputeContext(const ComputeContext *parent,
                                               std::string modifier_name)
    : ComputeContext(s_static_type, parent), modifier_name_(std::move(modifier_name))
{
  hash_.mix_in(s_static_type, strlen(s_static_type));
  hash_.mix_in(modifier_name_.data(), modifier_name_.size());
}

void ModifierComputeContext::print_current_in_line(std::ostream &stream) const
{
  stream << "Modifier: " << modifier_name_;
}

NodeGroupComputeContext::NodeGroupComputeContext(const ComputeContext *parent,
                                                 std::string node_name)
    : ComputeContext(s_static_type, parent), node_name_(std::move(node_name))
{
  hash_.mix_in(s_static_type, strlen(s_static_type));
  hash_.mix_in(node_name_.data(), node_name_.size());
}

StringRefNull NodeGroupComputeContext::node_name() const
{
  return node_name_;
}

void NodeGroupComputeContext::print_current_in_line(std::ostream &stream) const
{
  stream << "Node: " << node_name_;
}

}  // namespace blender::bke