I'd also recommend just asking the tapbots people. But if you're just curious (and impatient), you can always look into the executable.
You can find your iPhone's synchronized apps in "~/Music/iTunes/Mobile Applications/". The '*.ipa' files are really only zip files which you can rename and decompress. You'll find the app wrapper in the 'Payload' directory.
To see what frameworks an executable links to use the command line:
> otool -L MyApp/Payload/MyApp.app/MyApp
If there's a line in the output like
/System/Library/Frameworks/OpenGLES.framework/OpenGLES (compatibility version 1.0.0, current version 1.0.0)
they are probably using OpenGL.
You can also look into the linked symbols, to see what functions they are using:
> nm -u MyApp/Payload/MyApp.app/MyApp
...
_glColorPointer
_glDrawArrays
_glEnable
_glVertexPointer
_glViewport
...