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:
authorSebastian Parborg <darkdefende@gmail.com>2022-02-16 21:49:58 +0300
committerSebastian Parborg <darkdefende@gmail.com>2022-02-16 21:49:58 +0300
commit05697470ab0dde6646be939ae57a95c9d4099e0b (patch)
tree62f76ddd3ddd0de54c17351a37c48a52bb1bfbdd /source/blender/modifiers
parent0622d2ec611dbd68fe4105f507f639e3e34c13f6 (diff)
Cleanup: Remove deprecated StringGrid from our openvdb code
StringGrid has been deprecated in openvdb 9.0.0 and will be removed soon Reviewed By: Brecht Differential Revision: http://developer.blender.org/D14133
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_volume_displace.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/modifiers/intern/MOD_volume_displace.cc b/source/blender/modifiers/intern/MOD_volume_displace.cc
index af3a502162d..e2d7f445731 100644
--- a/source/blender/modifiers/intern/MOD_volume_displace.cc
+++ b/source/blender/modifiers/intern/MOD_volume_displace.cc
@@ -203,10 +203,8 @@ struct DisplaceGridOp {
template<typename GridType> void operator()()
{
- if constexpr (blender::is_same_any_v<GridType,
- openvdb::points::PointDataGrid,
- openvdb::StringGrid,
- openvdb::MaskGrid>) {
+ if constexpr (blender::
+ is_same_any_v<GridType, openvdb::points::PointDataGrid, openvdb::MaskGrid>) {
/* We don't support displacing these grid types yet. */
return;
}