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