From c35a5aeb706d33b9c09b5a12bbbeae0f109885c9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 4 Feb 2009 08:42:30 -0700 Subject: mesa: make Xlib glXIsDirect() always return True --- src/mesa/drivers/x11/fakeglx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c index 73fde865e3..3b004a3ee2 100644 --- a/src/mesa/drivers/x11/fakeglx.c +++ b/src/mesa/drivers/x11/fakeglx.c @@ -1395,13 +1395,13 @@ Fake_glXChooseVisual( Display *dpy, int screen, int *list ) /** * Init basic fields of a new fake_glx_context. - * If the MESA_GLX_FORCE_DIRECT env var is set, the context will be marked as - * a direct rendering context. Some apps won't run without this. */ static void init_glx_context(struct fake_glx_context *glxCtx, Display *dpy) { - GLboolean direct = _mesa_getenv("MESA_GLX_FORCE_DIRECT") ? GL_TRUE : GL_FALSE; + /* Always return True. See if anyone's confused... */ + GLboolean direct = GL_TRUE; + glxCtx->xmesaContext->direct = direct; glxCtx->glxContext.isDirect = direct; glxCtx->glxContext.currentDpy = dpy; -- cgit v1.2.3