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:
authorDalai Felinto <dfelinto@gmail.com>2017-02-17 19:53:51 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-02-17 19:54:04 +0300
commit1ed20a692ffe23f5f1efd6a2baf89aaecb45b190 (patch)
tree1df9409c52056c1614b825bcab42001a4c45c2f7 /source/blender/draw/DRW_engine.h
parent50fb3ea3de8db278fd135392b990158b745e3e3f (diff)
Follow up on mode engine code separation
The settings initialization belong within the engines
Diffstat (limited to 'source/blender/draw/DRW_engine.h')
-rw-r--r--source/blender/draw/DRW_engine.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/draw/DRW_engine.h b/source/blender/draw/DRW_engine.h
index 4f86e3fcd91..f5ac6e4c6c1 100644
--- a/source/blender/draw/DRW_engine.h
+++ b/source/blender/draw/DRW_engine.h
@@ -28,6 +28,7 @@
//#define WITH_VIEWPORT_CACHE_TEST
+struct CollectionEngineSettings;
struct DRWPass;
struct Material;
struct Scene;
@@ -42,4 +43,8 @@ void DRW_pass_free(struct DRWPass *pass);
void *DRW_material_settings_get(struct Material *ma, const char *engine_name);
void *DRW_render_settings_get(struct Scene *scene, const char *engine_name);
-#endif /* __DRW_ENGINE_H__ */ \ No newline at end of file
+/* Mode engines initialization */
+void OBJECT_collection_settings_create(struct CollectionEngineSettings *ces);
+void EDIT_collection_settings_create(struct CollectionEngineSettings *ces);
+
+#endif /* __DRW_ENGINE_H__ */