Skip to content

Extract info about gpu

disjukr edited this page Oct 1, 2014 · 2 revisions

Chromium has GPU related 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