Skip to content

Commit

Permalink
bump CI
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Gaida <[email protected]>
  • Loading branch information
gaida-exe authored and Sebastian Gaida committed Jun 24, 2023
1 parent 20fdfdd commit 0d20ac8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nanovdb/nanovdb/PNanoVDB.h
Original file line number Diff line number Diff line change
Expand Up @@ -2555,6 +2555,7 @@ PNANOVDB_FORCE_INLINE pnanovdb_bool_t pnanovdb_hdda_zero_crossing(
pnanovdb_vec3_t bbox_maxf = pnanovdb_coord_to_vec3(pnanovdb_coord_add(bbox_max, pnanovdb_coord_uniform(1)));

pnanovdb_bool_t hit = pnanovdb_hdda_ray_clip(PNANOVDB_REF(bbox_minf), PNANOVDB_REF(bbox_maxf), origin, PNANOVDB_REF(tmin), direction, PNANOVDB_REF(tmax));

// Early out if ray does not hit volume
if (!hit || tmax > 1.0e20f)
{
Expand Down Expand Up @@ -2615,6 +2616,7 @@ PNANOVDB_FORCE_INLINE pnanovdb_bool_t pnanovdb_hdda_tree_marcher(
pnanovdb_vec3_t bbox_maxf = pnanovdb_coord_to_vec3(pnanovdb_coord_add(bbox_max, pnanovdb_coord_uniform(1)));

pnanovdb_bool_t hit = pnanovdb_hdda_ray_clip(PNANOVDB_REF(bbox_minf), PNANOVDB_REF(bbox_maxf), origin, PNANOVDB_REF(tmin), direction, PNANOVDB_REF(tmax));

// Early out if ray does not hit volume
if (!hit || tmax > 1.0e20f)
{
Expand Down

0 comments on commit 0d20ac8

Please sign in to comment.