From: Adam Jackson Date: Sat, 16 Jul 2005 04:02:05 +0000 (+0000) Subject: XMesaResizeBuffers needs separate paths for client and server builds X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e0e993c5ff090058037875642dcd34727a3d8760;p=mesa.git XMesaResizeBuffers needs separate paths for client and server builds --- diff --git a/src/mesa/drivers/x11/xm_api.c b/src/mesa/drivers/x11/xm_api.c index bd8b9e6c7b3..725c2794b58 100644 --- a/src/mesa/drivers/x11/xm_api.c +++ b/src/mesa/drivers/x11/xm_api.c @@ -81,7 +81,9 @@ #include "tnl/tnl.h" #include "tnl/t_context.h" #include "tnl/t_pipeline.h" +#if 0 #include "drivers/common/driverfuncs.h" +#endif #ifdef XFree86Server #include @@ -2633,6 +2635,10 @@ unsigned long XMesaDitherColor( XMesaContext xmesa, GLint x, GLint y, */ void XMesaResizeBuffers( XMesaBuffer b ) { +#ifdef XFree86Server + GET_CURRENT_CONTEXT(ctx); + xmesa_resize_buffers(ctx, &(b->mesa_buffer), 0, 0); +#else Window root; int xpos, ypos; unsigned int width, height, bw, depth; @@ -2640,5 +2646,6 @@ void XMesaResizeBuffers( XMesaBuffer b ) XGetGeometry( b->xm_visual->display, b->frontxrb->pixmap, &root, &xpos, &ypos, &width, &height, &bw, &depth); xmesa_resize_buffers(ctx, &(b->mesa_buffer), width, height); +#endif }