Mesa (master): glx: Fix compile warnings since 99fee476a102be898a1a093c037e06382f90a5b9

Eric Anholt anholt at kemper.freedesktop.org
Fri Sep 28 21:03:51 UTC 2012


Module: Mesa
Branch: master
Commit: 7ae332dc6d41f89faf5644ce576b3e8b6e5e194e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7ae332dc6d41f89faf5644ce576b3e8b6e5e194e

Author: Eric Anholt <eric at anholt.net>
Date:   Tue Sep 25 10:02:06 2012 -0700

glx: Fix compile warnings since 99fee476a102be898a1a093c037e06382f90a5b9

_glapi_table is a struct full of named function pointers, while the generated
code just wants to treat it as an array of function pointers.  Cast to avoid
the compiler warning.

Reviewed-by: Chad Versace <chad.versace at linux.intel.com>
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/mapi/glapi/gen/glX_proto_send.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mapi/glapi/gen/glX_proto_send.py b/src/mapi/glapi/gen/glX_proto_send.py
index 34aa2c3..0e4b420 100644
--- a/src/mapi/glapi/gen/glX_proto_send.py
+++ b/src/mapi/glapi/gen/glX_proto_send.py
@@ -423,7 +423,7 @@ __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 disp_table = GET_DISPATCH();'
+				print '        const _glapi_proc *const disp_table = (_glapi_proc *)GET_DISPATCH();'
 				print '        PFNGL%sPROC p =' % (name.upper())
 				print '            (PFNGL%sPROC) disp_table[%d];' % (name.upper(), func.offset)
 				print '    %sp(%s);' % (ret_string, func.get_called_parameter_string())




More information about the mesa-commit mailing list