Skip to content

Extract info about gpu

Denys Khanzhiyev edited this page Sep 25, 2013 · 1 revision

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.
Clone this wiki locally