Skip to content

Commit

Permalink
Minor fix to compile on mac.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbikker committed Nov 28, 2024
1 parent ca5f7dc commit 1ae4817
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tiny_bvh.h
Original file line number Diff line number Diff line change
Expand Up @@ -2049,8 +2049,10 @@ bool BVH::IsOccluded( const Ray& ray, const BVHLayout layout ) const
{
case WALD_32BYTE: return IsOccluded_Wald32Byte( ray );
case AILA_LAINE: return IsOccluded_AilaLaine( ray );
#if defined BVH_USEAVX
case ALT_SOA: return IsOccluded_AltSoA( ray );
case BVH4_AFRA: return IsOccluded_Afra( ray );
#endif
default:
// For now, implemented using Intersect, so we have the interface in
// place. TODO: make specialized code, which will be faster.
Expand Down

0 comments on commit 1ae4817

Please sign in to comment.