Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/openvdb/internal/openvdb/tree/Util.h')
-rw-r--r--extern/openvdb/internal/openvdb/tree/Util.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/extern/openvdb/internal/openvdb/tree/Util.h b/extern/openvdb/internal/openvdb/tree/Util.h
index 803bc163dc4..9adb0967e42 100644
--- a/extern/openvdb/internal/openvdb/tree/Util.h
+++ b/extern/openvdb/internal/openvdb/tree/Util.h
@@ -33,7 +33,8 @@
#ifndef OPENVDB_TREE_UTIL_HAS_BEEN_INCLUDED
#define OPENVDB_TREE_UTIL_HAS_BEEN_INCLUDED
-#include <openvdb/math/Math.h> // for zeroVal
+#include <openvdb/math/Math.h> // for isNegative and negative
+#include <openvdb/Types.h> // for Index typedef
namespace openvdb {
OPENVDB_USE_VERSION_NAMESPACE
@@ -104,7 +105,7 @@ struct LevelSetPrune
{
child.pruneOp(*this);
if (!child.isInactive()) return false;
- value = child.getFirstValue() < zeroVal<ValueType>() ? -outside : outside;
+ value = math::isNegative(child.getFirstValue()) ? math::negative(outside) : outside;
return true;
}