Blender  V2.93
render_ops.c
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License
4  * as published by the Free Software Foundation; either version 2
5  * of the License, or (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software Foundation,
14  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15  *
16  * The Original Code is Copyright (C) 2009 Blender Foundation.
17  * All rights reserved.
18  */
19 
24 #include <stdlib.h>
25 
26 #include "BLI_utildefines.h"
27 
28 #include "ED_render.h"
29 
30 #include "WM_api.h"
31 
32 #include "render_intern.h" /* own include */
33 
34 /***************************** render ***********************************/
35 
37 {
46 
50 
53 
58 
61 
64 
65 #ifdef WITH_FREESTYLE
66  WM_operatortype_append(SCENE_OT_freestyle_module_add);
67  WM_operatortype_append(SCENE_OT_freestyle_module_remove);
68  WM_operatortype_append(SCENE_OT_freestyle_module_move);
69  WM_operatortype_append(SCENE_OT_freestyle_lineset_add);
70  WM_operatortype_append(SCENE_OT_freestyle_lineset_copy);
71  WM_operatortype_append(SCENE_OT_freestyle_lineset_paste);
72  WM_operatortype_append(SCENE_OT_freestyle_lineset_remove);
73  WM_operatortype_append(SCENE_OT_freestyle_lineset_move);
74  WM_operatortype_append(SCENE_OT_freestyle_linestyle_new);
75  WM_operatortype_append(SCENE_OT_freestyle_color_modifier_add);
76  WM_operatortype_append(SCENE_OT_freestyle_alpha_modifier_add);
77  WM_operatortype_append(SCENE_OT_freestyle_thickness_modifier_add);
78  WM_operatortype_append(SCENE_OT_freestyle_geometry_modifier_add);
79  WM_operatortype_append(SCENE_OT_freestyle_modifier_remove);
80  WM_operatortype_append(SCENE_OT_freestyle_modifier_move);
81  WM_operatortype_append(SCENE_OT_freestyle_modifier_copy);
82  WM_operatortype_append(SCENE_OT_freestyle_stroke_material_create);
83 #endif
84 
88 
89  /* render_internal.c */
94 
95  /* render_opengl.c */
97 }
void RENDER_OT_shutter_curve_preset(struct wmOperatorType *ot)
void SCENE_OT_view_layer_remove(struct wmOperatorType *ot)
void RENDER_OT_view_cancel(struct wmOperatorType *ot)
Definition: render_view.c:307
void SCENE_OT_view_layer_add(struct wmOperatorType *ot)
void WORLD_OT_new(struct wmOperatorType *ot)
void RENDER_OT_view_show(struct wmOperatorType *ot)
Definition: render_view.c:372
void MATERIAL_OT_paste(struct wmOperatorType *ot)
void MATERIAL_OT_new(struct wmOperatorType *ot)
void SCENE_OT_light_cache_free(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_remove(struct wmOperatorType *ot)
void TEXTURE_OT_new(struct wmOperatorType *ot)
void SCENE_OT_view_layer_remove_aov(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_add(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_move(struct wmOperatorType *ot)
void MATERIAL_OT_copy(struct wmOperatorType *ot)
void TEXTURE_OT_slot_move(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_select(struct wmOperatorType *ot)
void TEXTURE_OT_slot_paste(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_assign(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_copy(struct wmOperatorType *ot)
void TEXTURE_OT_slot_copy(struct wmOperatorType *ot)
void RENDER_OT_opengl(struct wmOperatorType *ot)
void SCENE_OT_render_view_add(struct wmOperatorType *ot)
void RENDER_OT_render(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_remove_unused(struct wmOperatorType *ot)
void SCENE_OT_view_layer_add_aov(struct wmOperatorType *ot)
void SCENE_OT_render_view_remove(struct wmOperatorType *ot)
void SCENE_OT_light_cache_bake(struct wmOperatorType *ot)
void OBJECT_OT_material_slot_deselect(struct wmOperatorType *ot)
void ED_operatortypes_render(void)
Definition: render_ops.c:36
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))