
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
chrome-software-rendering-list
Advanced tools
Chromium's list of blacklisted GPUs, consumable as a module
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)
}
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"
]
}
MIT, please see LICENSE.md for details
FAQs
Chromium's list of blacklisted GPUs, consumable as a module
The npm package chrome-software-rendering-list receives a total of 2 weekly downloads. As such, chrome-software-rendering-list popularity was classified as not popular.
We found that chrome-software-rendering-list demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.