|
| 1 | +Minutes from OpenVDB TSC meeting, January 24, 2023 |
| 2 | + |
| 3 | +Attendees: *Jeff* L., *Andre* P, *Dan* B., *Ken* M., *Nick* A., *Greg* H. |
| 4 | + |
| 5 | +Additional Attendees: JT Nelson (Blender) |
| 6 | + |
| 7 | +Regrets: *Rich* J. |
| 8 | + |
| 9 | +Agenda: |
| 10 | + |
| 11 | +1) Confirm quorum |
| 12 | +2) Secretary |
| 13 | +3) Broken Houdini download link |
| 14 | +4) Open PR's |
| 15 | +5) Fracture CSG tools |
| 16 | +6) Active states |
| 17 | +7) Sharpening filter |
| 18 | + |
| 19 | + |
| 20 | +------------ |
| 21 | + |
| 22 | +1) Confirm quorum |
| 23 | + |
| 24 | +Quorum is present. |
| 25 | + |
| 26 | +2) Secretary |
| 27 | + |
| 28 | +Secretary is Greg Hurst. |
| 29 | + |
| 30 | +3) Broken Houdini download link |
| 31 | + |
| 32 | +Houdini download link is broken at openvdb.org downloads page. Happened during git lfs switch. Need to upload regularly using git. |
| 33 | + |
| 34 | +File not updated often, so it's ok to not use git lfs and just use regular git commit. |
| 35 | + |
| 36 | +Maybe the URL needs to change in the html source when using git lfs? |
| 37 | + |
| 38 | +4) Open PR's |
| 39 | + |
| 40 | +Python bindings (1515) |
| 41 | +* Ken will try to look at the PR tomorrow |
| 42 | +* Recreate the PR to remedy the CLA issues and credit the original author |
| 43 | +* Or squash everything and go as if everything is just one commit |
| 44 | + |
| 45 | +Switch to using the static asserts (1522) |
| 46 | +* Why do we have a special wrapper for the static assert? |
| 47 | +* NANOVDB_ASSERT instead of the static_assert |
| 48 | +* Soon nanovdb will require C++17 (waiting on pnanovdb) |
| 49 | +* Ideally we'd have #ifdef platform instead of #if 1, so keep skeleton code present through #if 0 |
| 50 | +* Ken will approve and merge |
| 51 | + |
| 52 | +Prefer fixed-width integer types instead of size_t (1528) |
| 53 | +* Awaiting another approval -- Dan will approve |
| 54 | + |
| 55 | +Add missing separate_arguments cmake call (1534) |
| 56 | +* Needs another look -- not entirely clear why this was added |
| 57 | +* Splits list of arguments in case they're separated by non-standard delimiters |
| 58 | +* Perhaps re-ask OP what failed / why make this PR |
| 59 | + |
| 60 | +Support for IlmBase versions < 3.1 is deprecated and will be removed (1529) |
| 61 | +* vdbtool stuff |
| 62 | +* This PR looks to remove support for old version |
| 63 | + |
| 64 | +Remove the explicit default assignment operator (1530) |
| 65 | +* Remove explicit default assignment operator in nanovdb |
| 66 | +* Once something is given a default, you need to set default for other things too |
| 67 | +* More defaults need to be removed in the same file before approval |
| 68 | + |
| 69 | +Consolidated ValueAccessor implementations (1547) |
| 70 | +* Perhaps someone can build and see if everything still works, test against Houdini, etc. |
| 71 | +* Implementation related questions added to the PR by Dan |
| 72 | +* The override specifiers might be redundant |
| 73 | +* Need to add missing isCached in code base in similar piece of code. |
| 74 | + |
| 75 | +Fix Segfault in Projection Mode of VDB Advect Points SOP (1559) |
| 76 | +* Just awaiting approval from Jeff |
| 77 | + |
| 78 | +Fix all the int-in-bool-context warnings with GCC9 (1563) |
| 79 | +* Switch to use constexpr |
| 80 | +* Still need macros to guard type conversions? (Node type conversion warning, just relevant to float portion now) |
| 81 | +* LOD removed for bool grids |
| 82 | + |
| 83 | +5) Fracture CSG tools |
| 84 | + |
| 85 | +https://github.com/AcademySoftwareFoundation/openvdb/issues/1566 |
| 86 | + |
| 87 | +Seemless free cuts -- how can you do this with OpenVDB? Can do it in Houdini though since it has robust mesh support. |
| 88 | + |
| 89 | +Really need this to make your split-frame free of artifacts and for water-tight union. |
| 90 | + |
| 91 | +Our current choice is to not support robust mesh computation. Currently OpenVDB just has polygon soup. Mainly used for translation purposes. Robust support could lead us down a rabbit hole. |
| 92 | + |
| 93 | +By templating our meshes, it's probably not clear that if you wrote your own accelerated structure, what methods you need. |
| 94 | + |
| 95 | +Houdini seems to use everything in OpenVDB here, and so we could return polygon soup and edge data list (MeshToVoxelEdgeData) and the user can do it. The SOP can be a reference. |
| 96 | + |
| 97 | +Point OP to this SOP / OpenVDB methods. |
| 98 | + |
| 99 | +6) Active / Inactive States |
| 100 | + |
| 101 | +What should the default behavior be and how to expose different functionalities. |
| 102 | + |
| 103 | +Default behavior proposed: Max of values and if either is active make result active. |
| 104 | + |
| 105 | +Currently the activeness of states is not being brought over. |
| 106 | + |
| 107 | +Not more efficient to make 2 passes when combining multiple grids. Loses cache coherency. |
| 108 | +2 passes node-wise will be more efficient than 2 passes tree-wise. |
| 109 | + |
| 110 | +Do we want the ability to handle active states differently? |
| 111 | +Maybe we have a use to ignore when any grid has an inactive value. |
| 112 | + |
| 113 | +max( (0.0, inactive), (-1.0, active) ) --> (0.0, active) or (0.0, inactive)? |
| 114 | + |
| 115 | +What does it mean for a fog volume node to be active? Tags (GRID_LEVEL_SET, etc in enum GridClass) give implicit meaning to active states / values |
| 116 | +Majority of tools don't seem to normalize fogs to lie between 0 and 1. Difficult to maintain this discipline. |
| 117 | + |
| 118 | +Make sure to make whatever choices extendable. Tricky part is coming up with different patterns. |
| 119 | +Selection merge and reduction merge, etc. |
| 120 | + |
| 121 | +7) Sharpening filter |
| 122 | + |
| 123 | +Switch away from boost dependencies & add unit tests. |
| 124 | + |
| 125 | +Seems like updated PR could be around the corner. |
0 commit comments