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

MOD_gpencil_lineart.h « gpencil_modifiers « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c284f8e540fd968165bdb5827fc3f0b85a36453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup modifiers
 */

#pragma once

#include "DNA_windowmanager_types.h"

/* 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_all(struct wmOperatorType *ot);
void OBJECT_OT_lineart_clear(struct wmOperatorType *ot);
void OBJECT_OT_lineart_clear_all(struct wmOperatorType *ot);

void WM_operatortypes_lineart(void);

struct LineartCache;

void MOD_lineart_clear_cache(struct LineartCache **lc);

#ifdef __cplusplus
}
#endif