Skip to content

Commit

Permalink
Exclude AVX stuff for unsupported platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbikker committed Dec 11, 2024
1 parent d892752 commit a01c2cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiny_bvh_speedtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ int main()

#endif

#if defined TRAVERSE_SOA2WAY_ST && (defined BVH_USEAVX || defined BVH_USENEON)
#if defined TRAVERSE_SOA2WAY_ST && defined BVH_USEAVX // BVH_SoA::IsOccluded is not available for NEON yet.

// SOA
if (!bvh_soa) bvh_soa = new BVH_SoA( *bvh );
Expand Down

0 comments on commit a01c2cc

Please sign in to comment.