Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_global.h
| Show First 20 Lines • Show All 89 Lines • ▼ Show 20 Lines | typedef struct Global { | ||||
| /* this variable is written to / read from FileGlobal->fileflags */ | /* this variable is written to / read from FileGlobal->fileflags */ | ||||
| int fileflags; | int fileflags; | ||||
| /* save the allowed windowstate of blender when using -W or -w (GHOST_TWindowState) */ | /* save the allowed windowstate of blender when using -W or -w (GHOST_TWindowState) */ | ||||
| int windowstate; | int windowstate; | ||||
| /* message to use when autoexec fails */ | /* message to use when autoexec fails */ | ||||
| char autoexec_fail[200]; | char autoexec_fail[200]; | ||||
| /* current object being baked */ | |||||
| int baking_object_id; | |||||
sergey: Don't do this. It's not what G is intended to handle. | |||||
| } Global; | } Global; | ||||
| /* **************** GLOBAL ********************* */ | /* **************** GLOBAL ********************* */ | ||||
| /* G.f */ | /* G.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) | ||||
| /* also uses G_FILE_AUTOPLAY */ | /* also uses G_FILE_AUTOPLAY */ | ||||
| ▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines | |||||
Don't do this. It's not what G is intended to handle.