From: Chris Duncan Date: Wed, 4 Dec 2024 00:27:20 +0000 (-0800) Subject: Increase default GPU usage for pow. X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=165727dec3421e4b207cc82c915d5dfe0ac7032a;p=libnemo.git Increase default GPU usage for pow. --- 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 = ''