Intel® Embree Ray Tracing Kernels
Discussion forum on the open source ray tracing kernels for fast photo-realistic rendering on Intel® CPU(s)
280 Discussions

Mixing static and moving geometry in the motion blur tree

Emil_K_
Beginner
290 Views

Hi there,

is there any problem to use the BVH4 MB object split tree with both static and moving triangles? I assume not, but how optimal is that compared to, let's say, using two trees: one for static only (where we have more config options) and the other for mo-blurred?

Best,

Emil

0 Kudos
1 Reply
SvenW_Intel
Moderator
290 Views

Motion blur results in reduced performance as Embree does not support any per triangle precalculations when doing motion blur and has to interpolate bounds inside the BVH, even if you store only or mostly static geometry. If you have much static geometry, building two acceleration structure (one for static and one for moving geometry) makes sense. You could then intersect them one after the other and should get a performance boost of around 30% if you mostly hit static geometry.

0 Kudos
Reply