Index: wrapper-opengles.c
===================================================================
--- wrapper-opengles.c	(revision 1115)
+++ wrapper-opengles.c	(revision 1116)
@@ -97,6 +97,11 @@
     return 0;
 }
 
+void glDeleteLists(GLuint list, GLsizei range)
+{
+    return;
+}
+
 void glEnd(void)
 {
     if(ogles_vertices>0 && ogles_started)
@@ -213,6 +218,15 @@
     return 0;
 }
 
+// Not seems to be available in the iOS SDK ... why ?
+void glLoadMatrixd(const GLdouble *m)
+{
+GLfloat mf[16];
+int i;
+for(i=0;i<16;i++) mf[i]=m[i];
+glLoadMatrixf(mf);
+}
+
 #endif
 #endif
 #endif