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:
authorRichard Antalik <richardantalik@gmail.com>2019-03-18 22:01:40 +0300
committerRichard Antalik <richardantalik@gmail.com>2019-03-18 23:11:32 +0300
commit9c99292a16df35a5d244606cc49e06949a4ef535 (patch)
tree0cd687d8ac6474c1c3372ba2e85fc294e38f6382 /source/blender/makesdna/DNA_movieclip_types.h
parentb0752cd7a05187923fcbdfba974899a6039cfd2c (diff)
Fix T54117 Movie clip undistorted - proxy not working
Add movieclip fallback render option, for case, when proxies are not enabled or built Reviewers: sergey Differential Revision: https://developer.blender.org/D4219
Diffstat (limited to 'source/blender/makesdna/DNA_movieclip_types.h')
-rw-r--r--source/blender/makesdna/DNA_movieclip_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h
index 790b44466c5..342bad4e067 100644
--- a/source/blender/makesdna/DNA_movieclip_types.h
+++ b/source/blender/makesdna/DNA_movieclip_types.h
@@ -190,6 +190,8 @@ enum {
/* MovieClip->render_flag */
enum {
MCLIP_PROXY_RENDER_UNDISTORT = 1,
+ /** Use original, if proxy is not found. */
+ MCLIP_PROXY_RENDER_USE_FALLBACK_RENDER = 2,
};
#endif