Module: Mesa Branch: master Commit: 4cb13b433cfdaa1295e5df048d7ef614545f6e16 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4cb13b433cfdaa1295e5df048d7ef614545f6e16
Author: Chia-I Wu <[email protected]> Date: Wed Feb 24 12:04:58 2010 +0800 glapi: Generated GLX sources should use glapidispatch.h. Fix glX_proto_recv.py and glX_proto_send.py, and regenerate the sources. --- src/glx/indirect.c | 2 +- src/mesa/glapi/gen/glX_proto_recv.py | 2 +- src/mesa/glapi/gen/glX_proto_send.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/glx/indirect.c b/src/glx/indirect.c index 262637a..4a571a2 100644 --- a/src/glx/indirect.c +++ b/src/glx/indirect.c @@ -30,7 +30,7 @@ #include "indirect.h" #include "glxclient.h" #include "indirect_size.h" -#include "dispatch.h" +#include "glapidispatch.h" #include "glapi.h" #include "glthread.h" #include <GL/glxproto.h> diff --git a/src/mesa/glapi/gen/glX_proto_recv.py b/src/mesa/glapi/gen/glX_proto_recv.py index f423c6d..31745fc 100644 --- a/src/mesa/glapi/gen/glX_proto_recv.py +++ b/src/mesa/glapi/gen/glX_proto_recv.py @@ -92,7 +92,7 @@ class PrintGlxDispatchFunctions(glX_proto_common.glx_print_proto): print '#include "glapi.h"' print '#include "glapitable.h"' print '#include "glthread.h"' - print '#include "dispatch.h"' + print '#include "glapidispatch.h"' print '' print '#define __GLX_PAD(x) (((x) + 3) & ~3)' print '' diff --git a/src/mesa/glapi/gen/glX_proto_send.py b/src/mesa/glapi/gen/glX_proto_send.py index daca1b7..4d484c8 100644 --- a/src/mesa/glapi/gen/glX_proto_send.py +++ b/src/mesa/glapi/gen/glX_proto_send.py @@ -166,7 +166,7 @@ class PrintGlxProtoStubs(glX_proto_common.glx_print_proto): print '#include "indirect.h"' print '#include "glxclient.h"' print '#include "indirect_size.h"' - print '#include "dispatch.h"' + print '#include "glapidispatch.h"' print '#include "glapi.h"' print '#include "glthread.h"' print '#include <GL/glxproto.h>' _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
