Socket
Socket
Sign inDemoInstall

chrome-software-rendering-list

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    chrome-software-rendering-list

Chromium's list of blacklisted GPUs, consumable as a module


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Chrome's software-rendering-list

Interested in Chrome's blacklist for hardware acceleration, maybe because you're using Electron and want a more up-to-date list of GPUs that shouldn't be used for hardware acceleration?

This module downloads the latest GPU blacklist from Chrome's source and makes it available as an array.

const blacklist = require('chrome-software-rendering-list')

for (const gpu of blacklist) {
  console.log(gpu)
}

Format

Each entry in the array has the following format:

{
  "id": 1,
  "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac",
  "webkit_bugs": [47028],
  "os": {
    "type": "macosx"
  },
  "vendor_id": "0x1002",
  "device_id": ["0x7249"],
  "multi_gpu_category": "any",
  "features": [
    "accelerated_webgl",
    "flash3d",
    "flash_stage3d",
    "gpu_rasterization"
  ]
}

License

MIT, please see LICENSE.md for details

Keywords

FAQs

Last updated on 18 Jun 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc