diff --git a/webgl/main.js b/webgl/main.js index 83e3069..d59b799 100644 --- a/webgl/main.js +++ b/webgl/main.js @@ -2,7 +2,9 @@ const {app, BrowserWindow} = require('electron'); let mainWindow; -// enable ignore-gpu-blacklist option +// Chrome by default black lists certain GPUs because of bugs. +// if your are not able to view webgl try enabling --ignore-gpu-blacklist option +// But, this will make electron/chromium less stable. app.commandLine.appendSwitch('--ignore-gpu-blacklist'); // Quit when all windows are closed.