WebGL 中所有的简单功能都到哪里去了?

发布于 2024-09-11 06:27:48 字数 217 浏览 5 评论 0原文

glBegin/glEnd 和使用 glVertex 按顶点绘制我可以理解使用数组可以更快。

但是glLoadIdentity在哪里? glMultMatrixgl翻译glRotate

为什么我们必须自己处理所有矩阵内容?

glBegin/glEnd and per-vertex drawing with glVertex I can understand that using arrays can be faster.

But where is glLoadIdentity? glMultMatrix? glTranslate? glRotate?

Why do we have to handle all the matrix stuff ourselves?

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

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

发布评论

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

评论(1

趁微风不噪 2024-09-18 06:27:48

WebGL 是 Open ES 2.0 绑定。
OpenGL ES 2.0(和现代 OpenGL 3.2+)没有这些已弃用的函数,一切都必须在着色器和/或您自己的矩阵库中完成。

好消息是,有很多可用于 WebGL 的矩阵库,最好/最快的之一是 glMatrix ( https: //github.com/toji/gl-matrix)。

WebGL is an Open ES 2.0 binding.
OpenGL ES 2.0 (and modern OpenGL 3.2+) does not have these deprecated functions, everything must be done in shaders and or your own matrix libraries.

Good thing is that there is plenty of matrix libraries available for WebGL, one of the best/fastest being glMatrix ( https://github.com/toji/gl-matrix ).

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