Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/alembic/exporter/abc_export_capi.cc
| Show First 20 Lines • Show All 142 Lines • ▼ Show 20 Lines | if (CFRA != orig_frame) { | ||||
| CFRA = orig_frame; | CFRA = orig_frame; | ||||
| BKE_scene_graph_update_for_newframe(data->depsgraph, data->bmain); | BKE_scene_graph_update_for_newframe(data->depsgraph, data->bmain); | ||||
| } | } | ||||
| data->export_ok = !data->was_canceled; | data->export_ok = !data->was_canceled; | ||||
| *progress = 1.0f; | *progress = 1.0f; | ||||
| *do_update = true; | *do_update = true; | ||||
| /* Mute readability-non-const-parameter warning from clang-tidy. */ | |||||
| stop = stop; | |||||
| } | } | ||||
| static void export_endjob(void *customdata) | static void export_endjob(void *customdata) | ||||
| { | { | ||||
| ExportJobData *data = static_cast<ExportJobData *>(customdata); | ExportJobData *data = static_cast<ExportJobData *>(customdata); | ||||
| DEG_graph_free(data->depsgraph); | DEG_graph_free(data->depsgraph); | ||||
| ▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines | |||||