pixijs / filters

Collection of community-authored custom display filters for PixiJS
https://pixijs.io/filters/docs/
MIT License
947 stars 160 forks source link

Pixi filters don't work on OffscreenCanvas #463

Closed gnut-neygun closed 1 month ago

gnut-neygun commented 3 months ago

Reproduce:

Details:

The class TiltShiftAxisFilter is accessing the window object to get the innerHeight and innerWidth, which doesn't exist on a worker thread, thus exception.

ucarno commented 3 months ago

I also experience the same issue with BevelFilter (which does not access window object itself) in webworker. My temporary fix was to just copy BevelFilter into my project and use that instead of the original.