Changeset View
Changeset View
Standalone View
Standalone View
source/blender/gpencil_modifiers/MOD_gpencil_lineart.h
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| /** \file | /** \file | ||||
| * \ingroup modifiers | * \ingroup modifiers | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #include "DNA_windowmanager_types.h" | #include "DNA_windowmanager_types.h" | ||||
| /* Operator types should be in exposed header. */ | /* Operator types should be in exposed header. */ | ||||
| #ifdef __cplusplus | |||||
| extern "C" { | |||||
| #endif | |||||
| void OBJECT_OT_lineart_bake_strokes(struct wmOperatorType *ot); | void OBJECT_OT_lineart_bake_strokes(struct wmOperatorType *ot); | ||||
| void OBJECT_OT_lineart_bake_strokes_all(struct wmOperatorType *ot); | void OBJECT_OT_lineart_bake_strokes_all(struct wmOperatorType *ot); | ||||
| void OBJECT_OT_lineart_clear(struct wmOperatorType *ot); | void OBJECT_OT_lineart_clear(struct wmOperatorType *ot); | ||||
| void OBJECT_OT_lineart_clear_all(struct wmOperatorType *ot); | void OBJECT_OT_lineart_clear_all(struct wmOperatorType *ot); | ||||
| void WM_operatortypes_lineart(void); | void WM_operatortypes_lineart(void); | ||||
| struct LineartCache; | struct LineartCache; | ||||
| void MOD_lineart_clear_cache(struct LineartCache **lc); | void MOD_lineart_clear_cache(struct LineartCache **lc); | ||||
| #ifdef __cplusplus | |||||
| } | |||||
| #endif | |||||