summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/x11/fakeglx.c6
1 files changed, 3 insertions, 3 deletions
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;