「利用者:Koilz/paste」の版間の差分
細 (Created page with '<source lang="c"> 0054 blender\source\blender\blenkernel\intern\context.c // -------------------------------------------------------------------------------- struct bContext { i…') |
細 (1版 をインポートしました) |
(相違点なし)
|
2018年6月29日 (金) 04:38時点における最新版
0054 blender\source\blender\blenkernel\intern\context.c
// --------------------------------------------------------------------------------
struct bContext
{
int thread;
/* windowmanager context */
struct
{
struct wmWindowManager *manager;
struct wmWindow *window;
struct bScreen *screen;
struct ScrArea *area;
struct ARegion *region;
struct ARegion *menu;
struct bContextStore *store;
} wm;
/* data context */
struct
{
struct Main *main;
struct Scene *scene;
int recursion;
int py_init; /* true if python is initialized */
void *py_context;
} data;
/* data evaluation */
struct
{
int render;
} eval;
};
// --------------------------------------------------------------------------------