Commit: 1ddf93a706d7f914e7bab20083e40130ce60455b
Author: Brecht Van Lommel
Date:   Tue Jan 22 19:59:27 2019 +0100
Branches: master
https://developer.blender.org/rB1ddf93a706d7f914e7bab20083e40130ce60455b

Defaults: don't use Filmic view transform in Video Editing template.

It's too slow for now, could be considered if it's optimized more.

===================================================================

M       source/blender/blenloader/intern/versioning_defaults.c

===================================================================

diff --git a/source/blender/blenloader/intern/versioning_defaults.c 
b/source/blender/blenloader/intern/versioning_defaults.c
index c2e2d19d883..bc1ff353665 100644
--- a/source/blender/blenloader/intern/versioning_defaults.c
+++ b/source/blender/blenloader/intern/versioning_defaults.c
@@ -277,8 +277,12 @@ void BLO_update_defaults_startup_blend(Main *bmain, const 
char *app_template)
                        scene->r.cfra = 1.0f;
                        scene->r.displaymode = R_OUTPUT_WINDOW;
 
-                       /* AV Sync break physics sim caching, disable until 
that is fixed. */
-                       if (!(app_template && STREQ(app_template, 
"Video_Editing"))) {
+                       if (app_template && STREQ(app_template, 
"Video_Editing")) {
+                               /* Filmic is too slow, use default until it is 
optimized. */
+                               STRNCPY(scene->view_settings.view_transform, 
"Default");
+                       }
+                       else {
+                               /* AV Sync break physics sim caching, disable 
until that is fixed. */
                                scene->audio.flag &= ~AUDIO_SYNC;
                                scene->flag &= ~SCE_FRAME_DROP;
                        }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to