glapi: fix generator which got out of sync with the codebase
authorLuca Barbieri <luca@luca-barbieri.com>
Mon, 30 Aug 2010 18:48:49 +0000 (20:48 +0200)
committerLuca Barbieri <luca@luca-barbieri.com>
Mon, 30 Aug 2010 18:51:49 +0000 (20:51 +0200)
The __GLapi typedef was removed in c356f5867f2c1fad7155df538b9affa8dbdcf869,
but the code generator hasn't been updated.

src/mapi/glapi/gen/glX_proto_send.py

index 0ca0ff92a6c497152e882f6f999c1ef6ed2b8dd4..bd41c9e667ac8dabdb7587f650d1ddc6b6c493e4 100644 (file)
@@ -895,13 +895,13 @@ static int NoOp(void)
  * Create and initialize a new GL dispatch table.  The table is initialized
  * with GLX indirect rendering protocol functions.
  */
-__GLapi * __glXNewIndirectAPI( void )
+struct _glapi_table * __glXNewIndirectAPI( void )
 {
-    __GLapi *glAPI;
+    struct _glapi_table *glAPI;
     GLuint entries;
 
     entries = _glapi_get_dispatch_table_size();
-    glAPI = (__GLapi *) Xmalloc(entries * sizeof(void *));
+    glAPI = (struct _glapi_table *) Xmalloc(entries * sizeof(void *));
 
     /* first, set all entries to point to no-op functions */
     {