parent
36e3b75cab
commit
6bed74109b
|
@ -136,8 +136,6 @@ async function draw() {
|
|||
worker.postMessage({
|
||||
id: viewId,
|
||||
hash: props.hash,
|
||||
width: canvasWidth,
|
||||
height: canvasHeight,
|
||||
});
|
||||
} else {
|
||||
try {
|
||||
|
|
|
@ -8,7 +8,7 @@ onmessage = async (event) => {
|
|||
if (!('hash' in event.data && typeof event.data.hash === 'string')) {
|
||||
return;
|
||||
}
|
||||
const work = new OffscreenCanvas(event.data.width ?? 64, event.data.height ?? 64);
|
||||
const work = new OffscreenCanvas(canvas.width, canvas.height);
|
||||
render(event.data.hash, work);
|
||||
const bitmap = await createImageBitmap(work);
|
||||
postMessage({ id: event.data.id, bitmap });
|
||||
|
|
Loading…
Reference in New Issue