Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_app_build_options.c
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | static PyStructSequence_Field app_builtopts_info_fields[] = { | ||||
| {(char *)"gameengine", NULL}, | {(char *)"gameengine", NULL}, | ||||
| {(char *)"image_cineon", NULL}, | {(char *)"image_cineon", NULL}, | ||||
| {(char *)"image_dds", NULL}, | {(char *)"image_dds", NULL}, | ||||
| {(char *)"image_frameserver", NULL}, | {(char *)"image_frameserver", NULL}, | ||||
| {(char *)"image_hdr", NULL}, | {(char *)"image_hdr", NULL}, | ||||
| {(char *)"image_openexr", NULL}, | {(char *)"image_openexr", NULL}, | ||||
| {(char *)"image_openjpeg", NULL}, | {(char *)"image_openjpeg", NULL}, | ||||
| {(char *)"image_tiff", NULL}, | {(char *)"image_tiff", NULL}, | ||||
| {(char *)"input_hmd", NULL}, | |||||
| {(char *)"input_ndof", NULL}, | {(char *)"input_ndof", NULL}, | ||||
| {(char *)"audaspace", NULL}, | {(char *)"audaspace", NULL}, | ||||
| {(char *)"international", NULL}, | {(char *)"international", NULL}, | ||||
| {(char *)"openal", NULL}, | {(char *)"openal", NULL}, | ||||
| {(char *)"sdl", NULL}, | {(char *)"sdl", NULL}, | ||||
| {(char *)"sdl_dynload", NULL}, | {(char *)"sdl_dynload", NULL}, | ||||
| {(char *)"jack", NULL}, | {(char *)"jack", NULL}, | ||||
| {(char *)"libmv", NULL}, | {(char *)"libmv", NULL}, | ||||
| ▲ Show 20 Lines • Show All 129 Lines • ▼ Show 20 Lines | |||||
| #endif | #endif | ||||
| #ifdef WITH_TIFF | #ifdef WITH_TIFF | ||||
| SetObjIncref(Py_True); | SetObjIncref(Py_True); | ||||
| #else | #else | ||||
| SetObjIncref(Py_False); | SetObjIncref(Py_False); | ||||
| #endif | #endif | ||||
| #ifdef WITH_INPUT_HMD | |||||
| SetObjIncref(Py_True); | |||||
| #else | |||||
| SetObjIncref(Py_False); | |||||
| #endif | |||||
| #ifdef WITH_INPUT_NDOF | #ifdef WITH_INPUT_NDOF | ||||
| SetObjIncref(Py_True); | SetObjIncref(Py_True); | ||||
| #else | #else | ||||
| SetObjIncref(Py_False); | SetObjIncref(Py_False); | ||||
| #endif | #endif | ||||
| #ifdef WITH_AUDASPACE | #ifdef WITH_AUDASPACE | ||||
| SetObjIncref(Py_True); | SetObjIncref(Py_True); | ||||
| ▲ Show 20 Lines • Show All 126 Lines • Show Last 20 Lines | |||||