Extract info about gpu - Hosting-Site/node-webkit GitHub Wiki

Chromium has GPU ralated diagnostic info page at url chrome://gpu In node-webkit this page is broken but information may be extracted through devtools:

    1. open chrome://gpu in nw
    1. open devtools
    1. enter in console
var browserBridge = { onGpuInfoUpdate:function(arg){console.log(JSON.stringify(arg,null,1));}};
    1. then
chrome.send('browserBridgeInitialized');
    1. Tada! You have JSON object describing graphic features of nw.