Implements an operator to convert color attributes in available domains and types, as described in T97106. Differential Revision: https://developer.blender.org/D15596
25 lines
824 B
C++
25 lines
824 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2020 Blender Foundation. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup edgeometry
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct wmOperatorType;
|
|
|
|
namespace blender::ed::geometry {
|
|
|
|
/* *** geometry_attributes.cc *** */
|
|
void GEOMETRY_OT_attribute_add(struct wmOperatorType *ot);
|
|
void GEOMETRY_OT_attribute_remove(struct wmOperatorType *ot);
|
|
void GEOMETRY_OT_color_attribute_add(struct wmOperatorType *ot);
|
|
void GEOMETRY_OT_color_attribute_remove(struct wmOperatorType *ot);
|
|
void GEOMETRY_OT_color_attribute_render_set(struct wmOperatorType *ot);
|
|
void GEOMETRY_OT_color_attribute_duplicate(struct wmOperatorType *ot);
|
|
void GEOMETRY_OT_attribute_convert(struct wmOperatorType *ot);
|
|
void GEOMETRY_OT_color_attribute_convert(struct wmOperatorType *ot);
|
|
|
|
} // namespace blender::ed::geometry
|