🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

How to build a BVH - tutorial + code

Started by
10 comments, last by phantomus 1 year, 11 months ago

Hi Mark,

Yes indeed, you can use SIMD to speed up BVH traversal, on the CPU that is, of course. In fact it is typically used to check multiple rays against a single AABB, so that rays that travel roughly in the same direction benefit from the faster calculation, as well as the shared cost of fetching AABB data from RAM.

I would love to write a bit more about that; perhaps I'll do a few ‘addendum' articles for the series. ?

Jacco.

This topic is closed to new replies.

Advertisement