如何“推” OpenGL ES 中深度缓冲区向后退了一点?
我正在尝试使用以下方法绘制 3D 对象的轮廓:
绘制实际对象
绘制轮廓(多边形的 GL_LINEs),但有点向后。
然而,使用“将其向后平移一点”的方法在 3D 环境中效果不太好,因为投影矩阵会稍微倾斜一些。
有没有办法改变投影矩阵,以便将东西放在后面一点?我尝试更改投影矩阵的 z 部分,但现在才想起投影矩阵并不像普通矩阵那样工作。
我想 glDepthTestOffset 的存在可以解决所有这些问题。
I'm trying to draw an outline of a 3D object by using this method:
draw the actual object
draw the outlines (GL_LINEs of the polygons), but a bit to the back.
However, using a "translate this a bit to the back" approach doesn't work too well on a 3D environment, because the projection matrix tilts things a little bit.
Is there a way to alter the projection matrix so that it puts things a little bit further down the back? I tried altering the z part of the projection matrix, but only remembered now that the projection matrix don't really work like normal matrices.
I suppose the existence of glDepthTestOffset would solve all of these problems.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 glPolygonOffset 来根据对象偏移轮廓。
You can use glPolygonOffset to offset your outlines against the object.