Skip to content

Commit e281d62

Browse files
committed
COMPASS-1320: Ignore Chromium blacklist (#1172)
1 parent a62df8b commit e281d62

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/application.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ var _ = require('lodash');
22
var pkg = require('../../package.json');
33
var electron = require('electron');
44
var app = electron.app;
5+
// For Linux users with drivers that are blacklisted by Chromium
6+
// we ignore the blacklist to attempt to bypass the disabled
7+
// WebGL settings.
8+
app.commandLine.appendSwitch('ignore-gpu-blacklist', 'true');
9+
510
var path = require('path');
611
var EventEmitter = require('events').EventEmitter;
712
var inherits = require('util').inherits;

0 commit comments

Comments
 (0)