From 7dd0e36dc4582e57a3f5235f384b5207882c923e Mon Sep 17 00:00:00 2001 From: Gaia Clary Date: Mon, 26 Feb 2018 16:49:06 +0100 Subject: simplified collada integration in Blender. made functions mostly similar with blender2.8 --- source/blender/collada/collada.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/blender/collada/collada.h') diff --git a/source/blender/collada/collada.h b/source/blender/collada/collada.h index 99f601b7db7..09b46c1de58 100644 --- a/source/blender/collada/collada.h +++ b/source/blender/collada/collada.h @@ -32,6 +32,7 @@ extern "C" { #endif +#include "BKE_depsgraph.h" #include "BLI_linklist.h" #include "BLI_path_util.h" #include "RNA_types.h" @@ -51,6 +52,7 @@ typedef enum BC_export_texture_type { BC_TEXTURE_TYPE_UV } BC_export_texture_type; +struct EvaluationContext; struct bContext; struct Scene; @@ -67,7 +69,8 @@ int collada_import(struct bContext *C, int keep_bind_info); -int collada_export(struct Scene *sce, +int collada_export(struct EvaluationContext *eval_ctx, + struct Scene *sce, const char *filepath, int apply_modifiers, BC_export_mesh_type export_mesh_type, -- cgit v1.2.3