←back to thread

139 points CharlesW | 1 comments | | HN request time: 0.215s | source
Show context
bobajeff ◴[] No.42200767[source]
>Security and Performance with isolation between the main and webview processes

That's one of the performance characteristics I'm afraid will hinder certain applications.

It sounds like you need to use a IPC bridge to share data between the main process and renderor. Which means copying all the shared data. Like if I wanted to use ffmpeg for decoding video then each frame I'm waiting for a the decoded image to be copied before rendering it.

replies(2): >>42200780 #>>42200881 #
1. afavour ◴[] No.42200780[source]
Eh, it’ll hinder certain applications but very few, really. Assuming the webview is intended for UI and very little else.