Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_freestyle.h
| Show First 20 Lines • Show All 44 Lines • ▼ Show 20 Lines | |||||
| /* RNA aliases */ | /* RNA aliases */ | ||||
| typedef struct FreestyleSettings FreestyleSettings; | typedef struct FreestyleSettings FreestyleSettings; | ||||
| typedef struct FreestyleModuleSettings FreestyleModuleSettings; | typedef struct FreestyleModuleSettings FreestyleModuleSettings; | ||||
| /* FreestyleConfig */ | /* FreestyleConfig */ | ||||
| void BKE_freestyle_config_init(FreestyleConfig *config); | void BKE_freestyle_config_init(FreestyleConfig *config); | ||||
| void BKE_freestyle_config_free(FreestyleConfig *config); | void BKE_freestyle_config_free(FreestyleConfig *config); | ||||
| void BKE_freestyle_config_copy(FreestyleConfig *new_config, FreestyleConfig *config); | void BKE_freestyle_config_copy(FreestyleConfig *new_config, FreestyleConfig *config, const int flag); | ||||
| /* FreestyleConfig.modules */ | /* FreestyleConfig.modules */ | ||||
| FreestyleModuleConfig *BKE_freestyle_module_add(FreestyleConfig *config); | FreestyleModuleConfig *BKE_freestyle_module_add(FreestyleConfig *config); | ||||
| bool BKE_freestyle_module_delete(FreestyleConfig *config, FreestyleModuleConfig *module_conf); | bool BKE_freestyle_module_delete(FreestyleConfig *config, FreestyleModuleConfig *module_conf); | ||||
| bool BKE_freestyle_module_move(FreestyleConfig *config, FreestyleModuleConfig *module_conf, int direction); | bool BKE_freestyle_module_move(FreestyleConfig *config, FreestyleModuleConfig *module_conf, int direction); | ||||
| /* FreestyleConfig.linesets */ | /* FreestyleConfig.linesets */ | ||||
| FreestyleLineSet *BKE_freestyle_lineset_add(struct Main *bmain, FreestyleConfig *config, const char *name); | FreestyleLineSet *BKE_freestyle_lineset_add(struct Main *bmain, FreestyleConfig *config, const char *name); | ||||
| Show All 12 Lines | |||||