25 lines
511 B
C++
25 lines
511 B
C++
/* SPDX-FileCopyrightText: 2020 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup depsgraph
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "pipeline.h"
|
|
|
|
namespace blender::deg {
|
|
|
|
class ViewLayerBuilderPipeline : public AbstractBuilderPipeline {
|
|
public:
|
|
ViewLayerBuilderPipeline(::Depsgraph *graph);
|
|
|
|
protected:
|
|
void build_nodes(DepsgraphNodeBuilder &node_builder) override;
|
|
void build_relations(DepsgraphRelationBuilder &relation_builder) override;
|
|
};
|
|
|
|
} // namespace blender::deg
|