Perf: HTML5 vs iOS

Monkey Forums/Monkey Programming/Perf: HTML5 vs iOS

quantum(Posted 2013) [#1]
I do most of my monkey game testing with the HTML5 target, but the final product is for iOS. I only periodically test on iOS, but have tet to notice any perf differences. My game isnt hugely demanding and runs the same in chrome (on an i7) and iOS (iPhone 4 & iPad 3).

So it got me wondering if anyone else does this and have they ever noticed any major perf difference between HTML5 and iOS?


rIKmAN(Posted 2013) [#2]
There is huge performance difference if you start using SetColor.

It's fine on iOS but HTML5 lags badly when you start to use it a lot.

devolonters WebGL hack and the FastHTML5 target do improve this considerably in HTML5, but it's still not as fast as iOS for me in testing.


quantum(Posted 2013) [#3]
Thanks for the info!