Files
nothoughts/node_modules/pixi.js/lib/utils/browser/isWebGPUSupported.d.ts
2025-08-04 18:57:35 +02:00

10 lines
333 B
TypeScript

/// <reference types="@webgpu/types" />
/**
* Helper for checking for WebGPU support.
* @param options - The options for requesting a GPU adapter.
* @memberof utils
* @function isWebGPUSupported
* @returns Is WebGPU supported.
*/
export declare function isWebGPUSupported(options?: GPURequestAdapterOptions): Promise<boolean>;