Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_global.h
| Show First 20 Lines • Show All 111 Lines • ▼ Show 20 Lines | typedef struct Global { | ||||
| char autoexec_fail[200]; | char autoexec_fail[200]; | ||||
| } Global; | } Global; | ||||
| /* **************** GLOBAL ********************* */ | /* **************** GLOBAL ********************* */ | ||||
| /** #Global.f */ | /** #Global.f */ | ||||
| #define G_RENDER_OGL (1 << 0) | #define G_RENDER_OGL (1 << 0) | ||||
| #define G_SWAP_EXCHANGE (1 << 1) | #define G_SWAP_EXCHANGE (1 << 1) | ||||
| /* #define G_RENDER_SHADOW (1 << 3) */ /* temp flag, removed */ | #define G_EVENT_SIMULATE (1 << 2) | ||||
| #define G_BACKBUFSEL (1 << 4) | #define G_BACKBUFSEL (1 << 4) | ||||
| #define G_PICKSEL (1 << 5) | #define G_PICKSEL (1 << 5) | ||||
| /* #define G_FACESELECT (1 << 8) use (mesh->editflag & ME_EDIT_PAINT_FACE_SEL) */ | /* #define G_FACESELECT (1 << 8) use (mesh->editflag & ME_EDIT_PAINT_FACE_SEL) */ | ||||
| #define G_SCRIPT_AUTOEXEC (1 << 13) | #define G_SCRIPT_AUTOEXEC (1 << 13) | ||||
| #define G_SCRIPT_OVERRIDE_PREF (1 << 14) /* when this flag is set ignore the userprefs */ | #define G_SCRIPT_OVERRIDE_PREF (1 << 14) /* when this flag is set ignore the userprefs */ | ||||
| #define G_SCRIPT_AUTOEXEC_FAIL (1 << 15) | #define G_SCRIPT_AUTOEXEC_FAIL (1 << 15) | ||||
| ▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines | |||||