Hi all,
the 3G handles multitasking quite well, though this method leaves ugly lines everywhere, perhaps it's possible to skip all the fancy animations for multitasking altogether? Can anyone show me the ways? I've had some minimal programming training, thought this could be my little summer project (yes, southern hemisphere and all).
The aforementioned method is enable opengl-es2 in the 3G's plist.
so it looks like from this
Code:
<key>opengles-1</key>
<true/>
to
Code:
<key>opengles-2</key>
<true/>
<key>opengles-1</key>
<true/>
one can locate the plist file under
Code:
/System/Library/CoreServices/SpringBoard.app/N82AP.plist
by doing so 3G is able to multitask(with fancy animation and all)
without it, whilest in an app, switching to another app via multitasking bar will result in a crash..
SpringBoard[611] <Error>: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'SBAppToAppTransitionView should only be used on devices with fast color multiply'
with an error.
So i'm imagining perhaps I could either, 1. port the codes for opengl-es1 to 2, or 2. port the code of switching from 2 to 1...
but I'd need someone show me the way, if possible..
can anyone please help me?
Thanks all for reading!