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