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:
Diffstat (limited to 'source/blender/io/alembic/intern/abc_customdata.h')
-rw-r--r--source/blender/io/alembic/intern/abc_customdata.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/io/alembic/intern/abc_customdata.h b/source/blender/io/alembic/intern/abc_customdata.h
index 0ddba866016..ed96d427689 100644
--- a/source/blender/io/alembic/intern/abc_customdata.h
+++ b/source/blender/io/alembic/intern/abc_customdata.h
@@ -6,6 +6,8 @@
* \ingroup balembic
*/
+#include "BLI_math_vec_types.hh"
+
#include <Alembic/Abc/All.h>
#include <Alembic/AbcGeom/All.h>
@@ -15,7 +17,6 @@ struct CustomData;
struct MLoop;
struct MLoopUV;
struct MPoly;
-struct MVert;
struct Mesh;
using Alembic::Abc::ICompoundProperty;
@@ -34,7 +35,7 @@ struct CDStreamConfig {
MPoly *mpoly;
int totpoly;
- MVert *mvert;
+ float3 *positions;
int totvert;
MLoopUV *mloopuv;