aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xwin/winprocarg.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-10-05 16:47:44 +0200
committermarha <marha@users.sourceforge.net>2011-10-05 16:47:44 +0200
commit8238de0fe0c28bd54b3e6cdd1fc94513cf21d3cc (patch)
treee9adf557b0065c0936be2a1936eaa3033144ac74 /xorg-server/hw/xwin/winprocarg.c
parent0e5ac4a92495c162590cedb58c6f6fc1d9ba199a (diff)
downloadvcxsrv-8238de0fe0c28bd54b3e6cdd1fc94513cf21d3cc.tar.gz
vcxsrv-8238de0fe0c28bd54b3e6cdd1fc94513cf21d3cc.tar.bz2
vcxsrv-8238de0fe0c28bd54b3e6cdd1fc94513cf21d3cc.zip
Added swrast dll based on wgl
Diffstat (limited to 'xorg-server/hw/xwin/winprocarg.c')
-rw-r--r--xorg-server/hw/xwin/winprocarg.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/xorg-server/hw/xwin/winprocarg.c b/xorg-server/hw/xwin/winprocarg.c
index aab5091c9..306dce79f 100644
--- a/xorg-server/hw/xwin/winprocarg.c
+++ b/xorg-server/hw/xwin/winprocarg.c
@@ -1138,12 +1138,16 @@ ddxProcessArgument (int argc, char *argv[], int i)
g_fNativeGl = TRUE;
return 1;
}
-
- if (IS_OPTION("-nowgl"))
+ else if (IS_OPTION("-nowgl"))
{
g_fNativeGl = FALSE;
return 1;
}
+ else if (IS_OPTION("-swrastwgl"))
+ {
+ g_fswrastwgl = TRUE;
+ return 1;
+ }
return 0;
}