Re: [Development] Capturing and overlaying in QtQuick using RHI

2025-02-16 Thread Jean-Michaƫl Celerier
I think I have something close to that there: https://github.com/ossia/score/blob/master/src/plugins/score-plugin-js/JS/Executor/GPUNode.cpp#L284 Line 289 the rendertarget on which QtQuick is going to be rendered. Then the actual rendering is there: https://github.com/ossia/score/blob/master/src/

[Development] Capturing and overlaying in QtQuick using RHI

2025-02-16 Thread Giuseppe D'Angelo via Development
Hi, When using QQuickWindow with RHI, I'm wondering what would be the best way to capture the contents drawn by QtQuick (1), and also overlay some further drawing on top of those contents (2). The tricky bit is that I'd like the capture _not to_ include the further drawing -- I've solved (1)