Qt QGraphicsScene & OpenGL,哪一个是混合两者的最佳方法?

发布于 2024-12-13 16:57:15 字数 126 浏览 0 评论 0原文

我将开始开发我的矢量查看器应用程序。我探索了 2D 和 3D Qt 工具,我的印象是我必须创建两个独立的数据世界。 QGrapchicsScene 需要“items”,OpenGL 需要原始数据。你的意见是什么?

I'm going to start development on my vectorial viewer app. I have explored the 2D and 3D Qt tools and I have the impression that I have to create two independents data worlds. The QGrapchicsScene needs 'items', the OpenGL needs raw data. What is your opinion ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眼睛不忧郁 2024-12-20 16:57:15

我见过的唯一方法是使用“Boxes”演示中列出的范例,该演示可以从 Qt 中包含的 qtdemo 可执行文件访问。

基本上,您必须子类化 QGraphicsScene 并将所有 openGL 代码放入子类的虚拟 drawBackground() 函数的重写版本中。然后你在你的UI中放置一个QGraphicsView(或其子类),并使用QGraphicsView::setViewPort(QWidget *)将一个QGLWidget放入图形视图的视口中,这将允许你的drawBackground代码使用openGL。

Only way I've seen to do this is to use the paradigm layed out in the "Boxes" demo accessible from the qtdemo executable which is included with Qt.

Basically you must subclass QGraphicsScene and place all of your openGL code into your subclass's overridden version of the virtual drawBackground() function. Then you place a QGraphicsView (or subclass thereof) in your UI, and use QGraphicsView::setViewPort(QWidget *) to put a QGLWidget in as the graphics view's viewport, which will allow your drawBackground code to use openGL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文