Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_userdef_types.h
| Show First 20 Lines • Show All 657 Lines • ▼ Show 20 Lines | typedef struct UserDef_Experimental { | ||||
| * when the release cycle is not alpha. */ | * when the release cycle is not alpha. */ | ||||
| char use_new_hair_type; | char use_new_hair_type; | ||||
| char use_new_point_cloud_type; | char use_new_point_cloud_type; | ||||
| char use_full_frame_compositor; | char use_full_frame_compositor; | ||||
| char use_sculpt_vertex_colors; | char use_sculpt_vertex_colors; | ||||
| char use_sculpt_tools_tilt; | char use_sculpt_tools_tilt; | ||||
| char use_extended_asset_browser; | char use_extended_asset_browser; | ||||
| char use_override_templates; | char use_override_templates; | ||||
| char _pad[2]; | char use_navigate_while_transform; | ||||
| char _pad; | |||||
| /** `makesdna` does not allow empty structs. */ | /** `makesdna` does not allow empty structs. */ | ||||
| } UserDef_Experimental; | } UserDef_Experimental; | ||||
| #define USER_EXPERIMENTAL_TEST(userdef, member) \ | #define USER_EXPERIMENTAL_TEST(userdef, member) \ | ||||
| (((userdef)->flag & USER_DEVELOPER_UI) && ((userdef)->experimental).member) | (((userdef)->flag & USER_DEVELOPER_UI) && ((userdef)->experimental).member) | ||||
| typedef struct UserDef { | typedef struct UserDef { | ||||
| /** UserDef has separate do-version handling, and can be read from other files. */ | /** UserDef has separate do-version handling, and can be read from other files. */ | ||||
| ▲ Show 20 Lines • Show All 771 Lines • Show Last 20 Lines | |||||