Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/sequencer.c
| Context not available. | |||||
| } | } | ||||
| if (size >= 75) { | if (size >= 75) { | ||||
| return IMB_PROXY_75; | return IMB_PROXY_75; | ||||
| } | } | ||||
| if (size >= 50) { | if (size >= 50) { | ||||
| return IMB_PROXY_50; | return IMB_PROXY_50; | ||||
| } | } | ||||
| return IMB_PROXY_25; | return IMB_PROXY_25; | ||||
| } | } | ||||
| static double seq_rendersize_to_scale_factor(int size) | double seq_rendersize_to_scale_factor(int size) | ||||
| { | { | ||||
| if (size >= 99) { | if (size >= 99) { | ||||
| return 1.0; | return 1.0; | ||||
| } | } | ||||
| if (size >= 75) { | if (size >= 75) { | ||||
| return 0.75; | return 0.75; | ||||
| } | } | ||||
| if (size >= 50) { | if (size >= 50) { | ||||
| return 0.50; | return 0.50; | ||||
| } | } | ||||
| Context not available. | |||||