Blender  V3.3
COM_BlurNode.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2011 Blender Foundation. */
3 
4 #pragma once
5 
6 #include "COM_Node.h"
7 
8 namespace blender::compositor {
9 
14 class BlurNode : public Node {
15  public:
16  BlurNode(bNode *editor_node);
17  void convert_to_operations(NodeConverter &converter,
18  const CompositorContext &context) const override;
19 };
20 
21 } // namespace blender::compositor
BlurNode(bNode *editor_node)
Definition: COM_BlurNode.cc:17
void convert_to_operations(NodeConverter &converter, const CompositorContext &context) const override
convert node to operation
Definition: COM_BlurNode.cc:22
Overall context of the compositor.