tornavis/source/blender/compositor/nodes/COM_InpaintNode.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
469 B
C
Raw Normal View History

/* SPDX-FileCopyrightText: 2011 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
2018-08-08 03:49:51 +02:00
#pragma once
#include "COM_Node.h"
2021-03-23 17:12:27 +01:00
namespace blender::compositor {
/**
* \brief InpaintNode
* \ingroup Node
*/
class InpaintNode : public Node {
public:
InpaintNode(bNode *editor_node);
void convert_to_operations(NodeConverter &converter,
const CompositorContext &context) const override;
};
2021-03-23 17:12:27 +01:00
} // namespace blender::compositor