Vary top 24 bits of shifted indices instead of top 32 bits

This commit is contained in:
Peter Dimov
2021-11-29 17:37:26 +02:00
parent 5e8b6a9e55
commit d3c37344f0

View File

@ -59,7 +59,7 @@ static void init_indices()
for( unsigned i = 1; i <= N*2; ++i )
{
indices3.push_back( (std::uint64_t)i << 32 );
indices3.push_back( (std::uint64_t)i << 40 );
}
}