Changeset View
Changeset View
Standalone View
Standalone View
source/blender/alembic/intern/alembic_capi.cc
| Context not available. | |||||
| if (!data->settings.logger.empty()) { | if (!data->settings.logger.empty()) { | ||||
| std::cerr << data->settings.logger; | std::cerr << data->settings.logger; | ||||
| WM_report(RPT_ERROR, "Errors occured during the export, look in the console to know more..."); | WM_report(RPT_ERROR, "Errors occurred during the export, look in the console to know more..."); | ||||
| } | } | ||||
| G.is_rendering = false; | G.is_rendering = false; | ||||
| Context not available. | |||||
| * ExportJobData contains an ExportSettings containing a SimpleLogger. | * ExportJobData contains an ExportSettings containing a SimpleLogger. | ||||
| * | * | ||||
| * Since ExportJobData is a C-style struct dynamically allocated with | * Since ExportJobData is a C-style struct dynamically allocated with | ||||
| * MEM_mallocN (see above), its construtor is never called, therefore the | * MEM_mallocN (see above), its constructor is never called, therefore the | ||||
| * ExportSettings constructor is not called which implies that the | * ExportSettings constructor is not called which implies that the | ||||
| * SimpleLogger one is not called either. SimpleLogger in turn does not call | * SimpleLogger one is not called either. SimpleLogger in turn does not call | ||||
| * the constructor of its data members which ultimately means that its | * the constructor of its data members which ultimately means that its | ||||
| Context not available. | |||||
| for (iter = data->readers.begin(); iter != data->readers.end(); ++iter) { | for (iter = data->readers.begin(); iter != data->readers.end(); ++iter) { | ||||
| Object *ob = (*iter)->object(); | Object *ob = (*iter)->object(); | ||||
| /* It's possible that cancellation occured between the creation of | /* It's possible that cancellation occurred between the creation of | ||||
| * the reader and the creation of the Blender object. */ | * the reader and the creation of the Blender object. */ | ||||
| if (ob == NULL) continue; | if (ob == NULL) continue; | ||||
| Context not available. | |||||