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
path: root/source
diff options
context:
space:
mode:
authorLukas Tönne <lukas.toenne@gmail.com>2015-03-19 16:18:02 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-03-26 16:13:40 +0300
commit640e3fd365a528ac05241037b5e85a35b842f7b2 (patch)
tree8b2096c5f33da9cc55326503a51e406f747f3601 /source
parentb4f62f7866b9303ec28b047bb381c55505e59605 (diff)
Fix for use of wrong CustomData for tessfaces.
Diffstat (limited to 'source')
-rw-r--r--source/blender/pointcache/alembic/abc_mesh.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/pointcache/alembic/abc_mesh.cpp b/source/blender/pointcache/alembic/abc_mesh.cpp
index 128be23cc65..e8f995b9be8 100644
--- a/source/blender/pointcache/alembic/abc_mesh.cpp
+++ b/source/blender/pointcache/alembic/abc_mesh.cpp
@@ -654,7 +654,7 @@ PTCReadSampleResult AbcDerivedMeshReader::read_sample(float frame)
m_edge_data_reader.read_sample(ss, edata, num_edata, user_props);
DM_ensure_tessface(m_result);
- CustomData *fdata = m_result->getVertDataLayout(m_result);
+ CustomData *fdata = m_result->getTessFaceDataLayout(m_result);
int num_fdata = m_result->getNumTessFaces(m_result);
m_face_data_reader.read_sample(ss, fdata, num_fdata, user_props);