734c41aba5
* blurhashを描画するためのcanvasは再利用する
* Revert "perf(frontend): WebGL contextの数を減らす"
This reverts commit aeb8955ca2
.
* MkAvatarは平均色だけにする
* clean up
* fix
17 lines
464 B
TypeScript
17 lines
464 B
TypeScript
import { render } from 'buraha';
|
|
|
|
const canvas = new OffscreenCanvas(64, 64);
|
|
|
|
onmessage = (event) => {
|
|
// console.log(event.data);
|
|
if (!('id' in event.data && typeof event.data.id === 'string')) {
|
|
return;
|
|
}
|
|
if (!('hash' in event.data && typeof event.data.hash === 'string')) {
|
|
return;
|
|
}
|
|
|
|
render(event.data.hash, canvas);
|
|
const bitmap = canvas.transferToImageBitmap();
|
|
postMessage({ id: event.data.id, bitmap });
|
|
};
|