Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions web/src/webgpu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export interface GPUDeviceDetectOutput {
/**
* DetectGPU device in the environment.
*/
export async function detectGPUDevice(): Promise<GPUDeviceDetectOutput | undefined> {
export async function detectGPUDevice(powerPreference: "low-power" | "high-performance" = "high-performance"): Promise<GPUDeviceDetectOutput | undefined> {
if (typeof navigator !== "undefined" && navigator.gpu !== undefined) {
const adapter = await navigator.gpu.requestAdapter({ "powerPreference": "high-performance" });
const adapter = await navigator.gpu.requestAdapter({ powerPreference });
if (adapter == null) {
throw Error(
"Unable to find a compatible GPU. This issue might be because your computer doesn't have a GPU, or your system settings are not configured properly. " +
Expand Down