Skip to content

Commit

Permalink
Fix embree4 bitrot.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsvensson committed Jul 20, 2024
1 parent a180da3 commit ef8f28f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/light/trace_embree.hh
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ public:

#ifdef HAVE_EMBREE4
RTCIntersectArguments embree4_args = ctx2.setup_intersection_arguments();
for (int i = 0; i < _numrays; ++i)
rtcIntersect1(scene, &_rays[i], &embree4_args);
for (auto &ray : _rays)
rtcIntersect1(scene, &ray.ray, &embree4_args);
#else
rtcIntersect1M(scene, &ctx2, &_rays.data()->ray, _rays.size(), sizeof(_rays[0]));
#endif
Expand Down Expand Up @@ -310,8 +310,8 @@ public:
ray_source_info ctx2(this, self, shadowmask);
#ifdef HAVE_EMBREE4
RTCOccludedArguments embree4_args = ctx2.setup_occluded_arguments();
for (int i = 0; i < _numrays; ++i)
rtcOccluded1(scene, &_rays[i], &embree4_args);
for (auto &ray : _rays)
rtcOccluded1(scene, &ray.ray.ray, &embree4_args);
#else
rtcOccluded1M(scene, &ctx2, &_rays.data()->ray.ray, _rays.size(), sizeof(_rays[0]));
#endif
Expand Down

0 comments on commit ef8f28f

Please sign in to comment.