
Wed, 11/30/2016 - 13:28
Forums:
Hello,
Anybody any pointers on how to render into a QQuickItem? So far I am able to render into a qquickitem by using a
QQuickFramebufferObject derived class and creating a renderer. This works but always renders in the complete window
instead of only the QQuickItem contents. I tried with deriving my own window class from Aspect_Window but that didn't help.
What is the best way of integrating OCC with qml?
Thanks,
Arjan
Sat, 08/01/2020 - 19:22
I know this is an old post, but I have the same problem in 2020. I have tried lots of examples from github and other sources. My QQuickFramebufferObject has two problems:
1. it renders on complete window
2. It is flickering on resize.
This is the code:
- First render is black screen: screenshot.png
https://www.opencascade.com/system/files/forum/screenshot.png
- While resizing, flick between screenshot_1.png and screenshot_2.png
https://www.opencascade.com/system/files/forum/screenshot_1.png
https://www.opencascade.com/system/files/forum/screenshot_2.png
Thank you for your help,
Frank.
Mon, 08/10/2020 - 20:40
OCCT 3D Viewer has its own offscreen framebuffer (FBO) management and by default renders into the window.
If you want to render into Qt framebuffer (QOpenGLFramebufferObject), then you should wrap it into OpenGl_FrameBuffer (there are auxiliary methods like OpenGl_FrameBuffer::InitWrapper()) or in opposite direction (create an OCCT framebuffer and wrap it into Qt, if there is such an API in Qt) and then assign it as default framebuffer to OCCT 3D Viewer OpenGl_Context::SetDefaultFrameBuffer()) before redraw (V3d_View::Redraw()) and after each resize. This would target OCCT 3D Viewer to render into this offscreen FBO instead of a window. Of course, you will need also disabling buffer swap by OCCT 3D Viewer (OpenGl_Caps::buffersNoSwap=true) and ensure redraw is done only within specific Qt method (disable immediate updates V3d_View::SetImmediateUpdate(false) and weed out application code from incorrect places of viewer update), not at arbitrary time - like it is done in QtQuick sample in OCCT, for example.
Sun, 09/10/2023 - 17:47
Hi, Kirill
I am trying to make OCCT render into QQuickFramebufferObject following your instruction. But I wonder how can I make OCCT use the opengl context I get in QQuickFramebufferObject::Renderer::render() function:
opencascade::handle<OpenGl_Context> occtCtx = new OpenGl_Context();
ok = occtCtx->Init(); //Initialize class from currently bound OpenGL context
qDebug() << "occtCtx Init ok: " << ok; //True
opencascade::handle<OpenGl_FrameBuffer> occtFbo = new OpenGl_FrameBuffer();
ok = occtFbo->InitWrapper(occtCtx); //Initialize class from currently bound FBO.
qDebug() << "occtFbo InitWrapper ok: " << ok; //True
qDebug() <<occtFbo->GetVPSizeX() << occtFbo->GetVPSizeY(); //Same as QQuickFramebufferObject.size()
//TODO: how to make OCCT render using occtCtx
BTW, I‘m using opencascade v7.4.0.
Mon, 08/10/2020 - 21:29
Thank you Kirill,
I already solved the problem, I was experimenting with QQuickFramebufferObject and didn't understand it very well at first. After I Implemented an Aspect_Window and separate rendering code from the GUI thread, everything started to work very well.
Cheers!
Mon, 08/10/2020 - 21:34
Good to know ;).
Thu, 01/05/2023 - 10:04
Hi Frank,
Would you please show a minimal example ? I need render into a QQuikItem too.
Thanks!
Wed, 08/28/2024 - 12:35
Hi,
I would also be interested in a working example.
My question about this topic on S.O.:
https://stackoverflow.com/questions/78922288
Kind regards