注意:--disable-gpu和ignore-gpu-blacklist等开关可能会随着Electron和Chrome的更新而变化,因此建议查阅Electron官方文档和Chrome命令行开关列表以获取最新和最准确的信息。 4. 测试禁用GPU后的应用 在禁用了GPU之后,你需要测试Electron应用是否仍然能够正常运行。特别是要注意那些依赖于GPU加速的功能(如WebGL渲染、视频播...
GPU is enabled To Reproduce app.commandLine.appendSwitch("disable-gpu"); Additional Information It works when using app.disableHardwareAcceleration() but that has a different effect. See: Electron 7 with app.disableHardwareAcceleration(): Electron 6 with disable-gpu:...
app.commandLine.appendSwitch('no-sandbox');app.commandLine.appendSwitch('disable-gpu');app.commandL...
the GPU process spawns Testcase Gist URL No response Additional Information No response main.js: const {app, BrowserWindow} = require('electron'); app.commandLine.appendSwitch("disable-gpu"); app.on('ready', () => { const mainWindow = new BrowserWindow(); mainWindow.loadURL("https://goo...
这是一个托盘应用,平时比较空的时候可以显示在桌面最上层实时提醒当前的Github状态,而比较忙的时候又...
e run --headless --enable-logging --v=2--disable-gpu --screenshot http://192.168.50.206:8889 Running"/home/a/dev0/e9.2.1/src/out/ReleaseSym0/electron --headless --enable-logging --v=2 --disable-gpu --screenshot http://192.168.50.206:8889"[1028/172650.483932:INFO:cpu_info.cc(53)...
e run --headless --enable-logging --v=2--disable-gpu --screenshot http://192.168.50.206:8889 Running"/home/a/dev0/e9.2.1/src/out/ReleaseSym0/electron --headless --enable-logging --v=2 --disable-gpu --screenshot http://192.168.50.206:8889"[1028/172650.483932:INFO:cpu_info.cc(53)...
编辑1:也尝试过使用和不使用--enable-transparent-visuals --disable-gpu如此处所述 我找到了让它工作的方法!尝试在 Electron 准备好后 10 毫秒创建窗口,如下所示: app.on('ready',function() {setTimeout(function() {createWindow(); },10);
app.disableHardwareAcceleration(); 网上大佬们让下禁用GPU硬件加速,下面主要看禁用后对性能的影响 不禁用 空闲时(应用打开无操作) CPU 6-7%,内存600M 不禁用 打开窗口(win会闪黑屏) CPU峰值 50-60%,内存涨400M多,GPU峰值 11-19% 禁用 空闲时
大部分时间无法显示页面,或黑屏,loadURL方法抛出error。 若右键图标,增加启动参数--disable-gpu,或可以解决。 代码解决:判断系统版本,若是专业版,则app.whenReady之前调用 app.disableHardwareAcceleration() 比较有代表性的issue: Any Electron app running on Win 10 16299.19 are not rendered · Issue #10863 ·...