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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/include/ED_scene.h')
-rw-r--r--source/blender/editors/include/ED_scene.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/source/blender/editors/include/ED_scene.h b/source/blender/editors/include/ED_scene.h
index 08ead58fce6..99a9693ad19 100644
--- a/source/blender/editors/include/ED_scene.h
+++ b/source/blender/editors/include/ED_scene.h
@@ -25,12 +25,20 @@
enum eSceneCopyMethod;
-struct Scene *ED_scene_add(struct Main *bmain, struct bContext *C, struct wmWindow *win, enum eSceneCopyMethod method) ATTR_NONNULL();
-bool ED_scene_delete(struct bContext *C, struct Main *bmain, struct wmWindow *win, struct Scene *scene) ATTR_NONNULL();
-void ED_scene_change_update(struct Main *bmain, struct Scene *scene, struct ViewLayer *layer) ATTR_NONNULL();
-bool ED_scene_view_layer_delete(
- struct Main *bmain, struct Scene *scene, struct ViewLayer *layer,
- struct ReportList *reports) ATTR_NONNULL(1, 2, 3);
+struct Scene *ED_scene_add(struct Main *bmain,
+ struct bContext *C,
+ struct wmWindow *win,
+ enum eSceneCopyMethod method) ATTR_NONNULL();
+bool ED_scene_delete(struct bContext *C,
+ struct Main *bmain,
+ struct wmWindow *win,
+ struct Scene *scene) ATTR_NONNULL();
+void ED_scene_change_update(struct Main *bmain, struct Scene *scene, struct ViewLayer *layer)
+ ATTR_NONNULL();
+bool ED_scene_view_layer_delete(struct Main *bmain,
+ struct Scene *scene,
+ struct ViewLayer *layer,
+ struct ReportList *reports) ATTR_NONNULL(1, 2, 3);
void ED_operatortypes_scene(void);