2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2021 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2021-09-05 15:22:30 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "COM_Node.h"
|
|
|
|
|
|
|
|
|
|
namespace blender::compositor {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \brief PosterizeNode
|
|
|
|
|
* \ingroup Node
|
|
|
|
|
*/
|
|
|
|
|
class PosterizeNode : public Node {
|
|
|
|
|
public:
|
2021-10-13 23:01:15 +02:00
|
|
|
PosterizeNode(bNode *editor_node);
|
|
|
|
|
void convert_to_operations(NodeConverter &converter,
|
|
|
|
|
const CompositorContext &context) const override;
|
2021-09-05 15:22:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace blender::compositor
|