Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/intern/versioning_270.c
| Show First 20 Lines • Show All 793 Lines • ▼ Show 20 Lines | #undef SEQ_USE_PROXY_CUSTOM_FILE | ||||
| } | } | ||||
| for (wm = main->wm.first; wm; wm = wm->id.next) { | for (wm = main->wm.first; wm; wm = wm->id.next) { | ||||
| for (win = wm->windows.first; win; win = win->next) { | for (win = wm->windows.first; win; win = win->next) { | ||||
| win->stereo3d_format = MEM_callocN(sizeof(Stereo3dFormat), "Stereo Display 3d Format"); | win->stereo3d_format = MEM_callocN(sizeof(Stereo3dFormat), "Stereo Display 3d Format"); | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| if (!DNA_struct_elem_find(fd->filesdna, "RenderData", "short", "simplify_subsurf_render")) { | |||||
| Scene *scene; | |||||
| for (scene = main->scene.first; scene != NULL; scene = scene->id.next) { | |||||
| scene->r.simplify_subsurf_render = scene->r.simplify_subsurf; | |||||
| scene->r.simplify_particles_render = scene->r.simplify_particles; | |||||
| } | |||||
| } | |||||
| } | } | ||||