Our recent game development experience with Letter Blocks 3D has shown once again that shared RAM system is one of the biggest bottlenecks on iOS devices. This became even more relevant with iOS 4 and its multitasking support. Careless users tend to leave a lot of apps and browser tabs to stay in background and… →
Triangle stripping utility for iPhone OpenGL ES developers
Triangle stripping is one of the most efficient ways to increase frame rate in complex scenes. There are good open source libraries around that can be used for stripping. One of them is NvTriStrip available on NVidia website. NvTriStrip is written in cross-platform C++ and can be easily built with Xcode. I have wrapped up… →
JellyTouch vs Unity: Rendering Performance Test
JellyTouch is an OpenGL ES game development framework created by Surgeworks. Unlike many popular RAD tools like Unity or Torque our framework is for hardcore developers, those programming geeks who like to retain total control over the code and not willing to trade game performance for RAD development comfort. JellyTouch is a set of Objective-C… →
What works and what doesn’t to improve OpenGL ES rendering performance on iPhone
Last weeks I have been working hard on optimizing our 3D engine JellyTouch. I have tried eventually all recommended methods to improve rendering performance and discovered that some of them work well, some provide small benefit and some don’t work at all. I think it is a good idea to share my results and probably… →