ai / ai/offscreen-canvas

Nit, this isn't a polyfill

未关闭
#34 1 条评论 1 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
JavaScript
星标
342
派生
15
PR 合并指标
30 天内没有已合并 PR

描述

This doesn't work as expected on mac/safari as discussed in this other issue.

[> [Mac/safari] will work, but use normal canvas without offscreen and web worker](https://github.com/ai/offscreen-canvas/issues/31#issuecomment-1013018932)

So then this isn't a polyfill then? This is a library that wraps offscreen canvas if available.

To me a polyfill implements the API for platforms that don't support it using the standard interface. This library requires users to a non-standard interface.

Furthermore it would be ideal if the polyfill could actually provide the desired functionality, in this case being able to offload canvas work to another web worker.

I think this could be done with iframes and proxies.

```mermaid
sequenceDiagram
main->>iframe: create canvas in iframe
main->>worker: use this offscreen canvas proxy
worker->>iframe: ctx.draw...
worker->>iframe: ctx.draw...
main->>+worker: getImageData
worker->>+iframe: forwardImageData
iframe-->>-main: ImageData
```

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。