Possible performance improvements?

Monkey Targets Forums/Android/Possible performance improvements?

clevijoki(Posted 2011) [#1]
So there are some matrix transform methods provided by google:
http://developer.android.com/reference/android/opengl/Matrix.html

These may be faster than the manual transforms the android code is doing now, because I the google version could be implemented natively and take advantage of simd instructions. Of course, it's also possible there would be no speedup if these functions are not simd optimized and/or the android jit compiler is already auto-vectorizing the code.