diff options
author | marha <marha@users.sourceforge.net> | 2012-09-14 11:11:28 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-09-14 11:11:28 +0200 |
commit | c0212d660fe99ea5e4a1b897670f7f7c111553c7 (patch) | |
tree | 12c04842a73bb885640f1e23ef9a3ca654d09c5a /mesalib/src/mapi | |
parent | f61137c5cf42ded5eeb85eaf007ae11f0811e022 (diff) | |
parent | b08ba56019b146786e1cde553c036dd0c4fd02e5 (diff) | |
download | vcxsrv-c0212d660fe99ea5e4a1b897670f7f7c111553c7.tar.gz vcxsrv-c0212d660fe99ea5e4a1b897670f7f7c111553c7.tar.bz2 vcxsrv-c0212d660fe99ea5e4a1b897670f7f7c111553c7.zip |
Merge remote-tracking branch 'origin/released'
Diffstat (limited to 'mesalib/src/mapi')
-rw-r--r-- | mesalib/src/mapi/glapi/gen/glX_proto_send.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesalib/src/mapi/glapi/gen/glX_proto_send.py b/mesalib/src/mapi/glapi/gen/glX_proto_send.py index d42f661ea..34aa2c31f 100644 --- a/mesalib/src/mapi/glapi/gen/glX_proto_send.py +++ b/mesalib/src/mapi/glapi/gen/glX_proto_send.py @@ -423,9 +423,9 @@ __indirect_get_proc_address(const char *name) print '' print '#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)' print ' if (gc->isDirect) {' - print ' const _glapi_proc *const table = GET_DISPATCH();' + print ' const _glapi_proc *const disp_table = GET_DISPATCH();' print ' PFNGL%sPROC p =' % (name.upper()) - print ' (PFNGL%sPROC) table[%d];' % (name.upper(), func.offset) + print ' (PFNGL%sPROC) disp_table[%d];' % (name.upper(), func.offset) print ' %sp(%s);' % (ret_string, func.get_called_parameter_string()) print ' } else' print '#endif' |