Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2018-02-26 18:49:06 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2018-02-26 19:18:31 +0300
commit7dd0e36dc4582e57a3f5235f384b5207882c923e (patch)
tree5d2335cf3e1fe59e7431056f42a9959f511ec37d /source/blender/collada/collada.h
parenta024da55af09fb75e3b72489a8696878909bf676 (diff)
simplified collada integration in Blender. made functions mostly similar with blender2.8
Diffstat (limited to 'source/blender/collada/collada.h')
-rw-r--r--source/blender/collada/collada.h5
1 files changed, 4 insertions, 1 deletions
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,