Question: Is it possible to share natively allocated data across multiple threads on Android?
Example: In the onCreate() function, I allocate a struct on the heap using native code and return a pointer to that data. Later on in the application, I would like to use that data in a different thread, in my case a GLThread used to render the data out...
Is this possible? If so, what would be the best way to go about this?