Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 291 Lines • ▼ Show 20 Lines | char handle_sel_free[4], handle_sel_auto[4], handle_sel_vect[4], handle_sel_align[4], | ||||
| handle_sel_auto_clamped[4]; | handle_sel_auto_clamped[4]; | ||||
| /** Dopesheet. */ | /** Dopesheet. */ | ||||
| char ds_channel[4], ds_subchannel[4], ds_ipoline[4]; | char ds_channel[4], ds_subchannel[4], ds_ipoline[4]; | ||||
| /** Keytypes. */ | /** Keytypes. */ | ||||
| char keytype_keyframe[4], keytype_extreme[4], keytype_breakdown[4], keytype_jitter[4], | char keytype_keyframe[4], keytype_extreme[4], keytype_breakdown[4], keytype_jitter[4], | ||||
| keytype_movehold[4]; | keytype_movehold[4]; | ||||
| /** Keytypes. */ | /** Keytypes. */ | ||||
| char keytype_keyframe_select[4], keytype_extreme_select[4], keytype_breakdown_select[4], | char keytype_keyframe_select[4], keytype_extreme_select[4], keytype_breakdown_select[4], | ||||
Gvgeo: I have no idea why so many _pad in the two structs. Tried to keep the change simple. | |||||
| keytype_jitter_select[4], keytype_movehold_select[4]; | keytype_jitter_select[4], keytype_movehold_select[4]; | ||||
| char keyborder[4], keyborder_select[4]; | char keyborder[4], keyborder_select[4]; | ||||
| char _pad4[4]; | char _pad4[3]; | ||||
| char console_output[4], console_input[4], console_info[4], console_error[4]; | char console_output[4], console_input[4], console_info[4], console_error[4]; | ||||
| char console_cursor[4], console_select[4]; | char console_cursor[4], console_select[4]; | ||||
| char vertex_size, outline_width, facedot_size; | char vertex_size, outline_width, obcenter_dia, facedot_size; | ||||
| char noodle_curving; | char noodle_curving; | ||||
| /* syntax for textwindow and nodes */ | /* syntax for textwindow and nodes */ | ||||
| char syntaxl[4], syntaxs[4]; // in nodespace used for backdrop matte | char syntaxl[4], syntaxs[4]; // in nodespace used for backdrop matte | ||||
| char syntaxb[4], syntaxn[4]; // in nodespace used for color input | char syntaxb[4], syntaxn[4]; // in nodespace used for color input | ||||
| char syntaxv[4], syntaxc[4]; // in nodespace used for converter group | char syntaxv[4], syntaxc[4]; // in nodespace used for converter group | ||||
| char syntaxd[4], syntaxr[4]; // in nodespace used for distort | char syntaxd[4], syntaxr[4]; // in nodespace used for distort | ||||
| ▲ Show 20 Lines • Show All 328 Lines • ▼ Show 20 Lines | typedef struct UserDef { | ||||
| short edit_studio_light; | short edit_studio_light; | ||||
| char _pad6[2]; | char _pad6[2]; | ||||
| short vbotimeout, vbocollectrate; | short vbotimeout, vbocollectrate; | ||||
| short textimeout, texcollectrate; | short textimeout, texcollectrate; | ||||
| int memcachelimit; | int memcachelimit; | ||||
| int prefetchframes; | int prefetchframes; | ||||
| /** Control the rotation step of the view when PAD2, PAD4, PAD6&PAD8 is use. */ | /** Control the rotation step of the view when PAD2, PAD4, PAD6&PAD8 is use. */ | ||||
| float pad_rot_angle; | float pad_rot_angle; | ||||
| char _pad12[2]; | char _pad12[4]; | ||||
| short obcenter_dia; | |||||
| /** Rotating view icon size. */ | /** Rotating view icon size. */ | ||||
| short rvisize; | short rvisize; | ||||
| /** Rotating view icon brightness. */ | /** Rotating view icon brightness. */ | ||||
| short rvibright; | short rvibright; | ||||
| /** Maximum number of recently used files to remember . */ | /** Maximum number of recently used files to remember . */ | ||||
| short recent_files; | short recent_files; | ||||
| /** Milliseconds to spend spinning the view. */ | /** Milliseconds to spend spinning the view. */ | ||||
| short smooth_viewtx; | short smooth_viewtx; | ||||
| ▲ Show 20 Lines • Show All 478 Lines • Show Last 20 Lines | |||||
I have no idea why so many _pad in the two structs. Tried to keep the change simple.