You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebGPU was an experimental feature on iOS 11 and 12.
WebGL via Metal is the latest option with iOS 15 and Mac OS as well.
Can someone explain their differences? @milhidaka
The text was updated successfully, but these errors were encountered:
The two are completely different.
WebGL via Metal exposes a WebGL interface to JavaScript applications; there is an overhead to convert WebGL instructions to native GPU instructions.
WebGPU, implemented in iOS 11, exposes a new interface for using the GPU. It is a thin wrapper for Metal and can achieve relatively high performance. Because Metal is an Apple-specific technology, it was not ported to other platforms. We don't know the exact reason, but WebGPU was removed in iOS15. Once the WebGPU standard is established as friendly to all platforms, we expect to see WebGPU implemented in iOS again.
WebGPU was an experimental feature on iOS 11 and 12.
WebGL via Metal is the latest option with iOS 15 and Mac OS as well.
Can someone explain their differences? @milhidaka
The text was updated successfully, but these errors were encountered: