mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 17:10:11 +01:00
glapi: fix generator which got out of sync with the codebase
The __GLapi typedef was removed in c356f5867f,
but the code generator hasn't been updated.
This commit is contained in:
parent
5360c48317
commit
699c82e30c
1 changed files with 3 additions and 3 deletions
|
|
@ -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 */
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue