OpenGL 模拟中达到性能的技巧
我想了解一些有关基于 OpenGL 的模拟性能的技巧、文章或书籍
i would like to know some tips, articles or books about performance in OpenGL based simulations
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一个演示文稿来帮助您入门。可能是AMD,但大多数观点仍然成立。
另外,如果您热衷于 OpenGL,那么必须拥有一本书。
但可能有一条黄金法则 - 阅读 OpenGL 3.2 规范 ,并且不要使用任何标记为“已弃用”的内容。仅此一点就可以让您摆脱大多数 OpenGL 瓶颈。
一些一般性提示:
Here's a presentation to get you started. It may be AMD but most points still stand.
Also, if you're seriously into OpenGL, there one book that is a must to have.
But probably there's one golden rule -- read the OpenGL 3.2 specifications, and DON'T USE anything that is marked as DEPRECATED. That alone will save you from most OpenGL bottlenecks.
A handful of general tips:
如果您还没有这样做,请务必使用顶点缓冲区对象。如果复杂的着色减慢了您的速度,请考虑使用延迟着色模型。
If you're not doing it already, be sure to use vertex buffer objects. If complex shading is slowing you down, consider a deferred shading model.