From: Daniel Borca Date: Tue, 13 Jan 2004 08:24:43 +0000 (+0000) Subject: updated FX wrapper X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=66304ec6d12350073a339a54d308d625c3923125;p=mesa.git updated FX wrapper --- diff --git a/src/mesa/drivers/dos/dmesa.c b/src/mesa/drivers/dos/dmesa.c index 5b4f71ad69e..2eb260ff30e 100644 --- a/src/mesa/drivers/dos/dmesa.c +++ b/src/mesa/drivers/dos/dmesa.c @@ -1095,6 +1095,7 @@ DMesaVisual DMesaCreateVisual (GLint width, #else /* FX */ + char *env; int i = 0, fx_attrib[32]; if (!rgbFlag) { @@ -1110,6 +1111,10 @@ DMesaVisual DMesaCreateVisual (GLint width, fx_attrib[i++] = colDepth; fx_attrib[i] = FXMESA_NONE; + if ((env = getenv("MESA_FX_INFO")) && (env[0] == 'r')) { + freopen("MESA.LOG", "w", stderr); + } + return (DMesaVisual)fxMesaCreateBestContext(-1, width, height, fx_attrib); #endif /* FX */ }