12345678910111213141516171819 |
- const { app } = require('electron')
- app.commandLine.appendSwitch('--disable-software-rasterizer')
- app.on('ready', () => {
- const infoType = process.argv.pop()
- app.getGPUInfo(infoType).then(
- (gpuInfo) => {
- setImmediate(() => {
- console.log(JSON.stringify(gpuInfo))
- app.exit(0)
- })
- },
- (error) => {
- console.error(error)
- app.exit(1)
- }
- )
- })
|