Pampering the stupid MSVC compiler again, it fails to build valid C code.

This commit is contained in:
Lukas Tönne
2014-11-07 11:43:25 +01:00
parent aa16b5c222
commit 7740b1671c

View File

@@ -4086,7 +4086,10 @@ static bool shape_cut_test_point(PEData *data, ParticleCacheKey *key)
{ {
BVHTreeFromMesh *shape_bvh = &data->shape_bvh; BVHTreeFromMesh *shape_bvh = &data->shape_bvh;
const float dir[3] = {1.0f, 0.0f, 0.0f}; const float dir[3] = {1.0f, 0.0f, 0.0f};
PointInsideBVH userdata = { data->shape_bvh, 0 }; PointInsideBVH userdata;
userdata.bvhdata = data->shape_bvh;
userdata.num_hits = 0;
BLI_bvhtree_ray_cast_all(shape_bvh->tree, key->co, dir, 0.0f, point_inside_bvh_cb, &userdata); BLI_bvhtree_ray_cast_all(shape_bvh->tree, key->co, dir, 0.0f, point_inside_bvh_cb, &userdata);