xmesa: call _glapi_set_dispatch() for all xserver DDXes.

This is to unify the xmesa code across xserver DDX'es. The call is intented for
XGL, but it does not hurt to call for other DDX'es. In fact it was not guarded
against XGL when it was first added in xserver.
This commit is contained in:
George Sapountzis 2007-04-20 18:51:20 +03:00
parent e4e2068ac9
commit 5491c8194c

View file

@ -1869,9 +1869,7 @@ PUBLIC
GLboolean XMesaForceCurrent(XMesaContext c)
{
if (c) {
#ifdef XGLServer
_glapi_set_dispatch(c->mesa.CurrentDispatch);
#endif
if (&(c->mesa) != _mesa_get_current_context()) {
_mesa_make_current(&c->mesa, c->mesa.DrawBuffer, c->mesa.ReadBuffer);