From 165727dec3421e4b207cc82c915d5dfe0ac7032a Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 3 Dec 2024 16:27:20 -0800 Subject: [PATCH] Increase default GPU usage for pow. --- src/lib/pow.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/pow.ts b/src/lib/pow.ts index f7b975f..94cc3dc 100644 --- a/src/lib/pow.ts +++ b/src/lib/pow.ts @@ -48,8 +48,8 @@ const p = () => { // Both width and height must be multiple of 256, (one byte) // but do not need to be the same, // matching GPU capabilities is the aim - const webglWidth = 256 * 2 - const webglHeight = 256 * 2 + const webglWidth = 256 * 4 + const webglHeight = 256 * 4 function hexify (arr: number[] | Uint8Array): string { let out = '' -- 2.34.1