This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/depsgraph/intern/builder/deg_builder_pchanmap.h

33 lines
758 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2015 Blender Foundation. All rights reserved. */
/** \file
* \ingroup depsgraph
*/
#pragma once
#include "intern/depsgraph_type.h"
namespace blender::deg {
struct RootPChanMap {
/** Debug contents of map. */
void print_debug();
/** Add a mapping. */
void add_bone(const char *bone, const char *root);
/** Check if there's a common root bone between two bones. */
bool has_common_root(const char *bone1, const char *bone2) const;
protected:
/**
* The strings are only referenced by this map. Users of RootPChanMap have to make sure that the
* life-time of the strings is long enough.
*/
Map<StringRefNull, Set<StringRefNull>> map_;
};
} // namespace blender::deg