We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have used Bullet for a long time with no issues! It's great. However, now I'm getting
m_batchManifoldsPtr[btGetCurrentThreadIndex()].push_back(manifold); btGetCurrentThreadIndex()=12
but m_batchManifoldsPtr.resize(btGetTaskScheduler()->getNumThreads()); getNumThreads=12
So I get an assert at when it runs m_batchManifoldsPtr[btGetCurrentThreadIndex()].push_back(manifold);
I'm not sure why this is showing up now.
Any help would be great!
Cheers
Simon
The text was updated successfully, but these errors were encountered:
I have the same problem
I use tbb::this_task_arena::current_thread_index() to replace the implementation of btGetCurrentThreadIndex
tbb::this_task_arena::current_thread_index()
Sorry, something went wrong.
No branches or pull requests
I have used Bullet for a long time with no issues! It's great.
However, now I'm getting
m_batchManifoldsPtr[btGetCurrentThreadIndex()].push_back(manifold);
btGetCurrentThreadIndex()=12
but
m_batchManifoldsPtr.resize(btGetTaskScheduler()->getNumThreads());
getNumThreads=12
So I get an assert at when it runs m_batchManifoldsPtr[btGetCurrentThreadIndex()].push_back(manifold);
I'm not sure why this is showing up now.
Any help would be great!
Cheers
Simon
The text was updated successfully, but these errors were encountered: