“JavaScript Get GPU Información de GPU del dispositivo” Código de respuesta

JavaScript Get GPU Información de GPU del dispositivo

// Create canvas
var canvas = document.createElement("canvas")
var webgl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl")
var debugInfo = webgl.getExtension("webgl_debug_renderer_info")
var gpu = webgl.getParameter(debugInfo.UNMASKED_RENDERER_WEBGL)
// We need to use the debugInfo because the webgl
// will return a GPU ID and not the name
// debugInfo extensions unmasks it and returns the GPU Name
NotDamian

JavaScript Get GPU Información de GPU del dispositivo

var canvas = document.createElement("canvas")
var webgl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl")
var debugInfo = webgl.getExtension("webgl_debug_renderer_info")
var gpu = webgl.getParameter(debugInfo.UNMASKED_RENDERER_WEBGL)
Bored Badger

Respuestas similares a “JavaScript Get GPU Información de GPU del dispositivo”

Preguntas similares a “JavaScript Get GPU Información de GPU del dispositivo”

Más respuestas relacionadas con “JavaScript Get GPU Información de GPU del dispositivo” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código