Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_space.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 5,038 Lines • ▼ Show 20 Lines | static void rna_def_space_sequencer(BlenderRNA *brna) | ||||
| static const EnumPropertyItem proxy_render_size_items[] = { | static const EnumPropertyItem proxy_render_size_items[] = { | ||||
| {SEQ_RENDER_SIZE_NONE, "NONE", 0, "No display", ""}, | {SEQ_RENDER_SIZE_NONE, "NONE", 0, "No display", ""}, | ||||
| {SEQ_RENDER_SIZE_SCENE, "SCENE", 0, "Scene render size", ""}, | {SEQ_RENDER_SIZE_SCENE, "SCENE", 0, "Scene render size", ""}, | ||||
| {SEQ_RENDER_SIZE_PROXY_25, "PROXY_25", 0, "Proxy size 25%", ""}, | {SEQ_RENDER_SIZE_PROXY_25, "PROXY_25", 0, "Proxy size 25%", ""}, | ||||
| {SEQ_RENDER_SIZE_PROXY_50, "PROXY_50", 0, "Proxy size 50%", ""}, | {SEQ_RENDER_SIZE_PROXY_50, "PROXY_50", 0, "Proxy size 50%", ""}, | ||||
| {SEQ_RENDER_SIZE_PROXY_75, "PROXY_75", 0, "Proxy size 75%", ""}, | {SEQ_RENDER_SIZE_PROXY_75, "PROXY_75", 0, "Proxy size 75%", ""}, | ||||
| {SEQ_RENDER_SIZE_PROXY_100, "PROXY_100", 0, "Proxy size 100%", ""}, | {SEQ_RENDER_SIZE_PROXY_100, "PROXY_100", 0, "Proxy size 100%", ""}, | ||||
| {SEQ_RENDER_SIZE_FULL, "FULL", 0, "No proxy, full render", ""}, | {SEQ_RENDER_SIZE_FULL, "FULL", 0, "No proxy, full render", ""}, | ||||
| {SEQ_RENDER_SIZE_AUTOMATIC, "AUTO", 0, "Automatic", "Use size closest to viewport size"}, | |||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| static const EnumPropertyItem overlay_type_items[] = { | static const EnumPropertyItem overlay_type_items[] = { | ||||
| {SEQ_DRAW_OVERLAY_RECT, "RECTANGLE", 0, "Rectangle", "Show rectangle area overlay"}, | {SEQ_DRAW_OVERLAY_RECT, "RECTANGLE", 0, "Rectangle", "Show rectangle area overlay"}, | ||||
| {SEQ_DRAW_OVERLAY_REFERENCE, "REFERENCE", 0, "Reference", "Show reference frame only"}, | {SEQ_DRAW_OVERLAY_REFERENCE, "REFERENCE", 0, "Reference", "Show reference frame only"}, | ||||
| {SEQ_DRAW_OVERLAY_CURRENT, "CURRENT", 0, "Current", "Show current frame only"}, | {SEQ_DRAW_OVERLAY_CURRENT, "CURRENT", 0, "Current", "Show current frame only"}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| ▲ Show 20 Lines • Show All 2,087 Lines • Show Last 20 Lines | |||||