Fix #117674: stereoscopy rendering with overwrite disabled broken #117696

Merged
Philipp Oeser merged 1 commits from lichtwerk/blender:117674 into main 2024-02-01 09:50:58 +01:00
1 changed files with 4 additions and 5 deletions

View File

@ -2403,18 +2403,17 @@ void RE_RenderAnim(Render *re,
}
else {
bool is_skip = false;
char filepath[FILE_MAX];
char filepath_view[FILE_MAX];
LISTBASE_FOREACH (SceneRenderView *, srv, &scene->r.views) {
if (!BKE_scene_multiview_is_render_view_active(&scene->r, srv)) {
continue;
}
BKE_scene_multiview_filepath_get(srv, filepath, filepath);
if (BLI_exists(filepath)) {
BKE_scene_multiview_filepath_get(srv, filepath, filepath_view);
if (BLI_exists(filepath_view)) {
is_skip = true;
printf("skipping existing frame \"%s\" for view \"%s\"\n", filepath, srv->name);
printf("skipping existing frame \"%s\" for view \"%s\"\n", filepath_view, srv->name);
}
}