旋转顶点 es2
我如何
在 es1 中的 opengl es2 中旋转顶点 我可以这样做 glRotatef(transY, 0, 0, 1);
然而,在 es2 下,它崩溃
的 es2 中可能发生的情况相同
与使用 iphone sdk for xcode
how do i rotate verticies in opengl es2
in es1 i can just do
glRotatef(transY, 0, 0, 1);
however under es2 it crashes
is the same thing possible in es2
using iphone sdk for xcode
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 OpenGL ES2 中,
glRotatef()
函数不再存在。相反,我相信您需要使用顶点着色器来完成所需的转换。以下资源可能会有所帮助:OpenGL ES2 API 文档
着色器教程
In OpenGL ES2 the
glRotatef()
function no longer exists. Instead I believe you need to use a vertex shader to accomplish the desired translation. The following resources may be helpful:OpenGL ES2 API Documentation
Shader Tutorial