>
Anyone have any ideas?
I just gave the “Hello, World” for OpenVDB Points and the Converting Point Attributes one a quick try and they both worked for me. From linker error, it's saying that it's looking for that method as a shared library import but it's not there. There could be any number of reasons, including:
- The import library for the OpenVDB shared DLL was not linked
- The OpenVDB library being linked in wasn't compiled as a shared library
- OpenVDB and/or the program was compiled with dllimport/dllexport mismatches. For example, OpenVDB needs to compiled with OPENVDB_PRIVATE and OPENVDB_DLL defined. The program using it needs to also have OPENVDB_DLL defined but OPENVDB_PRIVATE *not* defined.
Best regards,
-Edward