Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_sequencer.h
| Show First 20 Lines • Show All 94 Lines • ▼ Show 20 Lines | typedef struct SeqRenderData { | ||||
| int motion_blur_samples; | int motion_blur_samples; | ||||
| float motion_blur_shutter; | float motion_blur_shutter; | ||||
| bool skip_cache; | bool skip_cache; | ||||
| bool is_proxy_render; | bool is_proxy_render; | ||||
| int view_id; | int view_id; | ||||
| /* special case for OpenGL render */ | /* special case for OpenGL render */ | ||||
| struct GPUOffScreen *gpu_offscreen; | struct GPUOffScreen *gpu_offscreen; | ||||
| int gpu_samples; | // int gpu_samples; | ||||
| bool gpu_full_samples; | // bool gpu_full_samples; | ||||
| } SeqRenderData; | } SeqRenderData; | ||||
| void BKE_sequencer_new_render_data(struct Main *bmain, | void BKE_sequencer_new_render_data(struct Main *bmain, | ||||
| struct Depsgraph *depsgraph, | struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| int rectx, | int rectx, | ||||
| int recty, | int recty, | ||||
| int preview_render_size, | int preview_render_size, | ||||
| ▲ Show 20 Lines • Show All 459 Lines • Show Last 20 Lines | |||||