diff options
author | marha <marha@users.sourceforge.net> | 2013-06-05 10:42:25 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-06-05 10:42:25 +0200 |
commit | 1b079a7ca16c0aa3423d7d4ed59dc3d19a4e7a1d (patch) | |
tree | 630810119bd86f30541a996a3d479ada5f131e54 /xorg-server/hw | |
parent | a7313d3a6c1a2074ab83fa3d605cd2c5e4a99f87 (diff) | |
download | vcxsrv-1b079a7ca16c0aa3423d7d4ed59dc3d19a4e7a1d.tar.gz vcxsrv-1b079a7ca16c0aa3423d7d4ed59dc3d19a4e7a1d.tar.bz2 vcxsrv-1b079a7ca16c0aa3423d7d4ed59dc3d19a4e7a1d.zip |
Pass nowgl when no native gl is selected
Diffstat (limited to 'xorg-server/hw')
-rw-r--r-- | xorg-server/hw/xwin/xlaunch/main.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/xlaunch/main.cc b/xorg-server/hw/xwin/xlaunch/main.cc index 8e13b4436..8ec1e011c 100644 --- a/xorg-server/hw/xwin/xlaunch/main.cc +++ b/xorg-server/hw/xwin/xlaunch/main.cc @@ -704,6 +704,8 @@ class CMyWizard : public CWizard buffer += "-noclipboardprimary "; if (config.wgl) buffer += "-wgl "; + else + buffer += "-nowgl "; if (config.disableac) buffer += "-ac "; if (!config.extra_params.empty()) |