Files
test/source/blender/compositor/nodes/COM_AntiAliasingNode.h

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

24 lines
498 B
C
Raw Normal View History

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