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:
authorJacques Lucke <jacques@blender.org>2022-03-02 19:12:56 +0300
committerJacques Lucke <jacques@blender.org>2022-03-02 19:12:56 +0300
commit2fb31f34af84c39116742e20a12222099cd0ff9a (patch)
tree82f1144a9380b18accc037b2f554db4ec1595368 /source/blender/blenkernel/BKE_particle.h
parent216a215ba58ac67af5e7bfa334bbcef4e812ea3f (diff)
Fix T95692: incorrect interpolated children particle hair
Differential Revision: https://developer.blender.org/D14227
Diffstat (limited to 'source/blender/blenkernel/BKE_particle.h')
-rw-r--r--source/blender/blenkernel/BKE_particle.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_particle.h b/source/blender/blenkernel/BKE_particle.h
index 804331a3412..d39796ddbd1 100644
--- a/source/blender/blenkernel/BKE_particle.h
+++ b/source/blender/blenkernel/BKE_particle.h
@@ -596,7 +596,8 @@ void psys_get_texture(struct ParticleSimulationData *sim,
/**
* Interpolate a location on a face based on face coordinates.
*/
-void psys_interpolate_face(struct MVert *mvert,
+void psys_interpolate_face(struct Mesh *mesh,
+ struct MVert *mvert,
const float (*vert_normals)[3],
struct MFace *mface,
struct MTFace *tface,