File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ namespace internal {
3939
4040void initialize ()
4141{
42+ std::cerr << " Initialize: " << codecs::BoolCodec<BoolGrid>::name () << std::endl;
4243 CodecRegistry::registerCodec<codecs::BoolCodec<BoolGrid>>();
4344}
4445
Original file line number Diff line number Diff line change @@ -235,6 +235,9 @@ void testCodecIOImpl(
235235 // initialize to register all the grids and codecs
236236 openvdb::initialize ();
237237 // ensure the codec is registered
238+ if (!openvdb::io::CodecRegistry::isRegistered (GridT::gridType ())) {
239+ std::cerr << " Codec not registered: " << GridT::gridType () << std::endl;
240+ }
238241 ASSERT_TRUE (openvdb::io::CodecRegistry::isRegistered (GridT::gridType ()));
239242 // test the io implementation (codec)
240243 testIOImpl<GridT>(gridName, bgValue, fillValue);
You can’t perform that action at this time.
0 commit comments