2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright 2011 Blender Foundation. */
|
2012-08-06 13:45:11 +00:00
|
|
|
|
2018-08-08 11:49:51 +10:00
|
|
|
#pragma once
|
2012-08-06 13:45:11 +00:00
|
|
|
|
|
|
|
|
#include "COM_Node.h"
|
|
|
|
|
|
2021-03-23 17:12:27 +01:00
|
|
|
namespace blender::compositor {
|
|
|
|
|
|
2012-08-06 13:45:11 +00:00
|
|
|
/**
|
2018-09-05 14:56:29 +10:00
|
|
|
* \brief InpaintNode
|
|
|
|
|
* \ingroup Node
|
2012-08-06 13:45:11 +00:00
|
|
|
*/
|
|
|
|
|
class InpaintNode : public Node {
|
|
|
|
|
public:
|
2021-10-13 23:01:15 +02:00
|
|
|
InpaintNode(bNode *editor_node);
|
|
|
|
|
void convert_to_operations(NodeConverter &converter,
|
|
|
|
|
const CompositorContext &context) const override;
|
2012-08-06 13:45:11 +00:00
|
|
|
};
|
2021-03-23 17:12:27 +01:00
|
|
|
|
|
|
|
|
} // namespace blender::compositor
|