Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/intern/writefile.c
| Show First 20 Lines • Show All 2,844 Lines • ▼ Show 20 Lines | if (sl->spacetype == SPACE_VIEW3D) { | ||||
| } | } | ||||
| if (v3d->fx_settings.ssao) { | if (v3d->fx_settings.ssao) { | ||||
| writestruct(wd, DATA, GPUSSAOSettings, 1, v3d->fx_settings.ssao); | writestruct(wd, DATA, GPUSSAOSettings, 1, v3d->fx_settings.ssao); | ||||
| } | } | ||||
| if (v3d->fx_settings.dof) { | if (v3d->fx_settings.dof) { | ||||
| writestruct(wd, DATA, GPUDOFSettings, 1, v3d->fx_settings.dof); | writestruct(wd, DATA, GPUDOFSettings, 1, v3d->fx_settings.dof); | ||||
| } | } | ||||
| if (v3d->shading.prop) { | |||||
| IDP_WriteProperty(v3d->shading.prop, wd); | |||||
| } | |||||
| } | } | ||||
| else if (sl->spacetype == SPACE_GRAPH) { | else if (sl->spacetype == SPACE_GRAPH) { | ||||
| SpaceGraph *sipo = (SpaceGraph *)sl; | SpaceGraph *sipo = (SpaceGraph *)sl; | ||||
| ListBase tmpGhosts = sipo->runtime.ghost_curves; | ListBase tmpGhosts = sipo->runtime.ghost_curves; | ||||
| /* temporarily disable ghost curves when saving */ | /* temporarily disable ghost curves when saving */ | ||||
| BLI_listbase_clear(&sipo->runtime.ghost_curves); | BLI_listbase_clear(&sipo->runtime.ghost_curves); | ||||
| ▲ Show 20 Lines • Show All 1,281 Lines • Show Last 20 Lines | |||||