Welcome to mirror list, hosted at ThFree Co, Russian Federation.

COM_HueSaturationValueCorrectNode.h « nodes « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ded0d52b268772c9918c0953af55cc33c9b5c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2011 Blender Foundation. */

#pragma once

#include "COM_Node.h"

namespace blender::compositor {

/**
 * \brief HueSaturationValueCorrectNode
 * \ingroup Node
 */
class HueSaturationValueCorrectNode : public Node {
 public:
  HueSaturationValueCorrectNode(bNode *editor_node);
  void convert_to_operations(NodeConverter &converter,
                             const CompositorContext &context) const override;
};

}  // namespace blender::compositor