多视图视锥体裁剪

发布于 2024-07-14 09:21:53 字数 119 浏览 9 评论 0原文

函数 gluPerspective() 可用于设置近 Z 轴和远 Z 轴剪裁平面。

我想绘制一个在某个远 Z 平面剪裁的场景, 并在该 Z 平面之外绘制另一个场景。 是否可以每帧进行两次剪辑?

The function gluPerspective() can be used to set near Z and far Z clipping planes.

I want to draw a scene clipped at a certain far Z plane,
and draw another scene beyond this Z plane.
Is it possible to do this clipping twice per frame?

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

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

发布评论

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

评论(3

泛滥成性 2024-07-21 09:21:53

您没有理由不能这样做。

只需设置第一个透视图,绘制第一个场景,然后设置第二个透视图并绘制第二个场景,所有这些都在同一帧的绘图内。
这通常称为多通道渲染。

There's no reason you shouldn't be able to do this.

Simply setup the first perspective, draw the first scene and then setup the second perspective and draw the seconds scene, all within the drawing of the same frame.
This is generally referred to as multi-pass rendering.

泪眸﹌ 2024-07-21 09:21:53

您可能需要先绘制最远的场景,然后在绘制最近的场景之前执行 glClear(GL_DEPTH_BUFFER_BIT);

You might need to do a draw the farthest scene first and do a glClear(GL_DEPTH_BUFFER_BIT); before you draw the nearest scene.

鸵鸟症 2024-07-21 09:21:53

一种可能性是为场景分配不同的深度范围。 一些伪代码是:

  glDepthRange(0.5, 1.0)
  draw_far_scene
  glDepthRange(0.0, 0.5)
  draw_near_scene

您必须设置投影矩阵才能对近/远场景执行正确的剪辑。

需要分配深度范围以防止深度缓冲区“合并”两个渲染。

A possibility is to assign different depth ranges for the scenes. Some pseudo code would be :

  glDepthRange(0.5, 1.0)
  draw_far_scene
  glDepthRange(0.0, 0.5)
  draw_near_scene

You have to setup your projection matrices to perform the proper clipping for the near / far scenes.

The depth ranges assignment is needed to prevent the depth buffer to 'merge' both renderings.

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