Hi,
In a test project I have a native library generates bitmaps that
should be blitted to the screen.
Currently I do this by passing the buffer as an integer array from the
native code to Java which will blit it through Canvas.drawBitmap().
The integer array is accessed through GetPrimitiveArrayCritical().
I assume this is not the fastest way to draw screens from a native
library.
Any suggestions on how to improve this?
Is it possible with OpenGL ?
Thanks in advance

