xserver/hw/xgl xglglx.c,1.14,1.15 xglglx.h,1.1,1.2

Dave Airlie xserver-commit at pdx.freedesktop.org
Thu Jan 5 04:01:27 PST 2006


Committed by: airlied

Update of /cvs/xserver/xserver/hw/xgl
In directory gabe:/tmp/cvs-serv18735/hw/xgl

Modified Files:
	xglglx.c xglglx.h 
Log Message:
switch GLX and Xgl to use Mesa's "glapitable.h"


Index: xglglx.c
===================================================================
RCS file: /cvs/xserver/xserver/hw/xgl/xglglx.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- xglglx.c	3 Jan 2006 09:56:22 -0000	1.14
+++ xglglx.c	5 Jan 2006 12:01:25 -0000	1.15
@@ -112,10 +112,10 @@
 }
 
 void
-GlxSetRenderTables (__glProcTable    *table,
-		    __glProcTableEXT *tableEXT)
+GlxSetRenderTables (struct _glapi_table *table)
+
 {
-    (*__xglGLXFunc.setRenderTables) (table, tableEXT);
+  (*__xglGLXFunc.setRenderTables) (table);
 }
 
 Bool

Index: xglglx.h
===================================================================
RCS file: /cvs/xserver/xserver/hw/xgl/xglglx.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xglglx.h	3 Jan 2006 09:56:22 -0000	1.1
+++ xglglx.h	5 Jan 2006 12:01:25 -0000	1.2
@@ -48,8 +48,8 @@
 			       int		    preferredVis);
 
     void (*flushContextCache) (void);
-    void (*setRenderTables)   (__glProcTable	*table,
-			       __glProcTableEXT	*tableEXT);
+  void (*setRenderTables)   (struct _glapi_table	*table);
+
 } xglGLXFuncRec, *xglGLXFuncPtr;
 
 extern xglGLXFuncRec __xglGLXFunc;



More information about the xserver-commit mailing list