glTestFenceNV 使用 glReadPixels 总是返回 false

发布于 2024-11-28 06:36:13 字数 324 浏览 1 评论 0原文

我有一个设置,可以渲染到 FBO 并使用 glReadPixels 读回主机 PBO。

为了不使用 glMapBuffer 阻塞渲染线程,我使用 FENCE_NV 扩展来检查状态。

但是,如果我在 glReadPixels 之后调用 glSetFenceNV,那么无论我等待多久,glTestFenceNV 将始终返回 false。

另一方面,如果我将 glSetFenceNV 放在 glReadPixels 之前,那么一切都会正常工作,但是栅栏只会发出渲染状态的信号,而不是传输回主机内存的信号,glMapBuffer 可能仍然会阻塞。

有什么想法为什么它会这样吗?

I've got a setup where i render to an FBO and read back to host PBO using glReadPixels.

In order to not block the rendering thread with glMapBuffer im using FENCE_NV extension to check for status.

However, if I call glSetFenceNV after glReadPixels then glTestFenceNV will always return false, no matter how long I wait.

On the other hand if I put the glSetFenceNV before glReadPixels then everything works just fine, however the fence will only signal the status of the rendering, not the transfer back to host memory, glMapBuffer might still block.

Any ideas why it behaves like this?

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

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

发布评论

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

评论(1

夏日浅笑〃 2024-12-05 06:36:13

看来我必须在glReadPixels之后调用glFlush,否则它将不起作用。

It seems I have to call glFlush after glReadPixels, otherwise it will not work.

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