Stride and Skia render pipelines use different graphics devices. When bridging from one world into the other (SkiaTexture) we might run into resources which have been created on the other device and therefor are not valid on the one we’re rendering on. In your case that’s the SkImage produced by the VideoSourceToSkImage node. However what you could try is to tell that node to produce images backed by CPU memory (instead of GPU) by setting the prefer GPU pin to false. These images should then be renderable in both worlds.
That there even are two devices at play is unfortunate and a known issue since quite a while. However there’s no proper fix yet due to incompatibilities with blend modes in the used APIs. Sorry for that.
Yep, setting VideoSourceToSkImage’s “Prefer Gpu”-Pin to fals does the trick. Thanks for the explanation, this makes sense.
However, ideally this would be somehow recognized and handled internally (in the SkiaTexture), or?
But I understand it seems more complex then I thought.
Adding to the answer I gave further up: In the latest preview (7.0-256), Skia will use the same graphics device as Stride does. Had a quick look at your patch and where we see black in your screenshot, it now outputs the video correctly.