Skip to content

Commit

Permalink
#563 blacklist the intel driver on osx
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@6433 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 10, 2014
1 parent dde5e0f commit 3c740e5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/xpra/client/gl/gl_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@


BLACKLIST = {"vendor" : ["nouveau", "Humper", "VMware, Inc."]}
if sys.platform.startswith("darwin"):
#crashes were reported with the Intel driver on OSX
BLACKLIST["vendor"].append("Intel Inc.")


DEFAULT_HAS_ALPHA = not sys.platform.startswith("win") and not sys.platform.startswith("darwin")
HAS_ALPHA = os.environ.get("XPRA_ALPHA", DEFAULT_HAS_ALPHA) in (True, "1")
Expand Down

0 comments on commit 3c740e5

Please sign in to comment.